Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 13 from a total of 13 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18233077 | 405 days ago | IN | 0 ETH | 0.0004936 | ||||
Transfer | 18233072 | 405 days ago | IN | 0 ETH | 0.00032756 | ||||
Approve | 17959663 | 443 days ago | IN | 0 ETH | 0.00056082 | ||||
Approve | 17928888 | 447 days ago | IN | 0 ETH | 0.00111677 | ||||
Approve | 17928885 | 447 days ago | IN | 0 ETH | 0.00177938 | ||||
Approve | 17928558 | 447 days ago | IN | 0 ETH | 0.00143132 | ||||
Approve | 17913730 | 449 days ago | IN | 0 ETH | 0.0014213 | ||||
Transfer | 17913070 | 449 days ago | IN | 0 ETH | 0.0011404 | ||||
Transfer | 17892784 | 452 days ago | IN | 0 ETH | 0.00184396 | ||||
Transfer | 17892779 | 452 days ago | IN | 0 ETH | 0.00180573 | ||||
Transfer Ownersh... | 17892770 | 452 days ago | IN | 0 ETH | 0.00097685 | ||||
Approve | 17892566 | 452 days ago | IN | 0 ETH | 0.00136484 | ||||
0x60e06040 | 17892444 | 452 days ago | IN | 0 ETH | 0.13509294 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-11 */ // Twitter : @PK_ERC20 // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File @openzeppelin/contracts/token/ERC20/utils/[email protected] // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File contracts/lib/uniswap/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File contracts/lib/uniswap/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/lib/uniswap/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/lib/uniswap/IUniswapV2Pair.sol pragma solidity >0.5.6; interface IUniswapV2Pair { function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File contracts/TokenB.sol // Twitter : @PK_ERC20 pragma solidity ^0.8.0; contract Token is ERC20Burnable, Ownable{ using SafeERC20 for IERC20; IUniswapV2Router02 immutable public swapV2Router; mapping(address => bool) public swapV2Pairs; address public immutable mainPair; address public marketAddress; uint256 constant MIN_SELL_AMOUNT = 20_000_000 * (10 ** 18); address immutable public WETH; bool public swapLock; constructor(address swapV2RouterAddress_, address _marketAddress) ERC20("PK", "PK"){ _mint(0x73E0746744DC1c4e16ADbF2081b3DA49eC8D4e2A, 10_000_000_000 * (10 ** decimals())); marketAddress = _marketAddress; swapV2Router = IUniswapV2Router02(swapV2RouterAddress_); IUniswapV2Router02 _uniswapV2Router02 = IUniswapV2Router02(swapV2RouterAddress_); WETH = _uniswapV2Router02.WETH(); address _swapV2PairAddress = IUniswapV2Factory(_uniswapV2Router02.factory()) .createPair(address(this), WETH); require(IUniswapV2Pair(_swapV2PairAddress).token1() == address(this), "Not token1"); mainPair = _swapV2PairAddress; swapV2Pairs[_swapV2PairAddress] = true; _approve(address(this), swapV2RouterAddress_, type(uint256).max); } function _transfer( address sender, address recipient, uint256 amount ) internal override { if (sender == address(this) || recipient == address(this)){ super._transfer(sender, recipient, amount); return; } uint256 _fee; bool _isSell; if(swapV2Pairs[sender] || swapV2Pairs[recipient]){ (bool isAdd, bool _isRm) = _isLiquidity(sender, recipient, amount); if (!isAdd && !_isRm){ if (swapV2Pairs[sender]){ _fee = amount * 1 / 100; }else { _isSell = true; _fee = amount * 1 / 100; } } } if (_fee > 0){ super._transfer(sender, address(this), _fee); amount -= _fee; } if (_isSell && balanceOf(address(this)) >= MIN_SELL_AMOUNT){ swapLock = true; swapTokenToETH(balanceOf(address(this)), marketAddress); swapLock = false; } super._transfer(sender, recipient, amount); } function swapTokenToETH(uint256 _amount, address _to) internal { address[] memory _path = new address[](2); _path[0] = address(this); _path[1] = WETH; swapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, _path, _to, block.timestamp ); } function updateSwapPairConfig(address pair_, bool status_) public onlyOwner { require(swapV2Pairs[pair_] != status_, "A"); swapV2Pairs[pair_] = status_; } function updateMarketAddress(address _marketAddress) public onlyOwner { require(_marketAddress != address(0), "A"); marketAddress = _marketAddress; } function _isLiquidity(address from, address to, uint256 amount) internal view returns (bool isAdd, bool isRm){ if(swapV2Pairs[to]){ IUniswapV2Pair _pair = IUniswapV2Pair(to); address _token0 = _pair.token0(); if (address(this) != _token0){ (uint256 r0, uint256 r1,) = _pair.getReserves(); if (r0 == 0){ isAdd = true; }else { uint256 token0Bal = IERC20(_token0).balanceOf(address(_pair)); isAdd = token0Bal > r0 + r0 * amount / r1 / 2; } } } if(swapV2Pairs[from]){ IUniswapV2Pair _pair = IUniswapV2Pair(from); address _token0 = _pair.token0(); if (address(this) != _token0){ (uint256 r0, ,) = _pair.getReserves(); uint256 token0Bal = IERC20(_token0).balanceOf(address(_pair)); isRm = r0 > token0Bal; } } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"swapV2RouterAddress_","type":"address"},{"internalType":"address","name":"_marketAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mainPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"swapV2Pairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketAddress","type":"address"}],"name":"updateMarketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"},{"internalType":"bool","name":"status_","type":"bool"}],"name":"updateSwapPairConfig","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162001e8238038062001e82833981016040819052620000349162000664565b604080518082018252600280825261504b60f01b6020808401828152855180870190965292855284015281519192916200007191600391620005a1565b50805162000087906004906020840190620005a1565b505050620000a46200009e6200036060201b60201c565b62000364565b620000e27373e0746744dc1c4e16adbf2081b3da49ec8d4e2a620000cb6012600a620007b1565b620000dc906402540be400620007c9565b620003b6565b600780546001600160a01b0319166001600160a01b038381169190911790915582166080819052604080516315ab88c960e31b8152905184929163ad5c46489160048083019260209291908290030181865afa15801562000147573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200016d9190620007eb565b6001600160a01b031660c0816001600160a01b0316815250506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ed9190620007eb565b60c0516040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af11580156200023f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002659190620007eb565b9050306001600160a01b0316816001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002d69190620007eb565b6001600160a01b0316146200031f5760405162461bcd60e51b815260206004820152600a6024820152694e6f7420746f6b656e3160b01b60448201526064015b60405180910390fd5b6001600160a01b03811660a08190526000908152600660205260409020805460ff1916600117905562000356308560001962000479565b5050505062000861565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200040e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000316565b806002600082825462000422919062000809565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000316565b6001600160a01b038216620005405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000316565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b828054620005af9062000824565b90600052602060002090601f016020900481019282620005d357600085556200061e565b82601f10620005ee57805160ff19168380011785556200061e565b828001600101855582156200061e579182015b828111156200061e57825182559160200191906001019062000601565b506200062c92915062000630565b5090565b5b808211156200062c576000815560010162000631565b80516001600160a01b03811681146200065f57600080fd5b919050565b600080604083850312156200067857600080fd5b620006838362000647565b9150620006936020840162000647565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620006f3578160001904821115620006d757620006d76200069c565b80851615620006e557918102915b93841c9390800290620006b7565b509250929050565b6000826200070c57506001620007ab565b816200071b57506000620007ab565b81600181146200073457600281146200073f576200075f565b6001915050620007ab565b60ff8411156200075357620007536200069c565b50506001821b620007ab565b5060208310610133831016604e8410600b841016171562000784575081810a620007ab565b620007908383620006b2565b8060001904821115620007a757620007a76200069c565b0290505b92915050565b6000620007c260ff841683620006fb565b9392505050565b6000816000190483118215151615620007e657620007e66200069c565b500290565b600060208284031215620007fe57600080fd5b620007c28262000647565b600082198211156200081f576200081f6200069c565b500190565b600181811c908216806200083957607f821691505b602082108114156200085b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516115e36200089f600039600081816103580152611175015260006102b90152600081816101c801526111cc01526115e36000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063a457c2d71161007c578063a457c2d71461031a578063a5afbcb81461032d578063a9059cbb14610340578063ad5c464814610353578063dd62ed3e1461037a578063f2fde38b1461038d57600080fd5b806379cc6790146102a157806385af30c5146102b457806386995783146102db5780638da5cb5b146102ee57806395623641146102ff57806395d89b411461031257600080fd5b8063376255c311610115578063376255c314610211578063395093511461022557806342966c68146102385780634b6b03181461024d57806370a0823114610270578063715018a61461029957600080fd5b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019e57806323b872dd146101b057806327dce847146101c3578063313ce56714610202575b600080fd5b6101656103a0565b6040516101729190611243565b60405180910390f35b61018e6101893660046112ad565b610432565b6040519015158152602001610172565b6002545b604051908152602001610172565b61018e6101be3660046112d9565b61044a565b6101ea7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610172565b60405160128152602001610172565b60075461018e90600160a01b900460ff1681565b61018e6102333660046112ad565b61046e565b61024b61024636600461131a565b610490565b005b61018e61025b366004611333565b60066020526000908152604090205460ff1681565b6101a261027e366004611333565b6001600160a01b031660009081526020819052604090205490565b61024b61049d565b61024b6102af3660046112ad565b6104b1565b6101ea7f000000000000000000000000000000000000000000000000000000000000000081565b61024b6102e9366004611357565b6104ca565b6005546001600160a01b03166101ea565b6007546101ea906001600160a01b031681565b610165610555565b61018e6103283660046112ad565b610564565b61024b61033b366004611333565b6105df565b61018e61034e3660046112ad565b610643565b6101ea7f000000000000000000000000000000000000000000000000000000000000000081565b6101a2610388366004611395565b610651565b61024b61039b366004611333565b61067c565b6060600380546103af906113c3565b80601f01602080910402602001604051908101604052809291908181526020018280546103db906113c3565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b6000336104408185856106f2565b5060019392505050565b600033610458858285610816565b610463858585610890565b506001949350505050565b6000336104408185856104818383610651565b61048b9190611414565b6106f2565b61049a3382610a3c565b50565b6104a5610b6e565b6104af6000610bc8565b565b6104bc823383610816565b6104c68282610a3c565b5050565b6104d2610b6e565b6001600160a01b03821660009081526006602052604090205460ff161515811515141561052a5760405162461bcd60e51b81526020600482015260016024820152604160f81b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6060600480546103af906113c3565b600033816105728286610651565b9050838110156105d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610521565b61046382868684036106f2565b6105e7610b6e565b6001600160a01b0381166106215760405162461bcd60e51b81526020600482015260016024820152604160f81b6044820152606401610521565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600033610440818585610890565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610684610b6e565b6001600160a01b0381166106e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b61049a81610bc8565b6001600160a01b0383166107545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b6001600160a01b0382166107b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610521565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108228484610651565b9050600019811461088a578181101561087d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610521565b61088a84848484036106f2565b50505050565b6001600160a01b0383163014806108af57506001600160a01b03821630145b156108c4576108bf838383610c1a565b505050565b6001600160a01b038316600090815260066020526040812054819060ff168061090557506001600160a01b03841660009081526006602052604090205460ff165b1561098c57600080610918878787610dbe565b9150915081158015610928575080155b15610989576001600160a01b03871660009081526006602052604090205460ff161561096c57606461095b86600161142c565b610965919061144b565b9350610989565b60019250606461097c868561142c565b610986919061144b565b93505b50505b81156109aa5761099d853084610c1a565b6109a7828461146d565b92505b8080156109d15750306000908152602081905260409020546a108b2a2c2802909400000011155b15610a2a576007805460ff60a01b1916600160a01b179055610a1c610a0b306001600160a01b031660009081526020819052604090205490565b6007546001600160a01b031661111e565b6007805460ff60a01b191690555b610a35858585610c1a565b5050505050565b6001600160a01b038216610a9c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610521565b6001600160a01b03821660009081526020819052604090205481811015610b105760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610521565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146104af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610521565b6001600160a01b038216610ce05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610521565b6001600160a01b03831660009081526020819052604090205481811015610d585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610521565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361088a565b6001600160a01b038216600090815260066020526040812054819060ff1615610f8f5760008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190611484565b9050306001600160a01b03821614610f8c57600080836001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906114bd565b506001600160701b031691506001600160701b031691508160001415610eea5760019550610f89565b6040516370a0823160e01b81526001600160a01b038581166004830152600091908516906370a0823190602401602060405180830381865afa158015610f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f58919061150d565b9050600282610f678a8661142c565b610f71919061144b565b610f7b919061144b565b610f859084611414565b1095505b50505b50505b6001600160a01b03851660009081526006602052604090205460ff16156111165760008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190611484565b9050306001600160a01b03821614611113576000826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561106b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108f91906114bd565b50506040516370a0823160e01b81526001600160a01b0385811660048301526001600160701b039290921692506000918416906370a0823190602401602060405180830381865afa1580156110e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110c919061150d565b9091119350505b50505b935093915050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061115357611153611526565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000000000000000000000000000000000000000000000816001815181106111a7576111a7611526565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f00000000000000000000000000000000000000000000000000000000000000009091169063791ac9479061120c90869060009086908890429060040161153c565b600060405180830381600087803b15801561122657600080fd5b505af115801561123a573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b8181101561127057858101830151858201604001528201611254565b81811115611282576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461049a57600080fd5b600080604083850312156112c057600080fd5b82356112cb81611298565b946020939093013593505050565b6000806000606084860312156112ee57600080fd5b83356112f981611298565b9250602084013561130981611298565b929592945050506040919091013590565b60006020828403121561132c57600080fd5b5035919050565b60006020828403121561134557600080fd5b813561135081611298565b9392505050565b6000806040838503121561136a57600080fd5b823561137581611298565b91506020830135801515811461138a57600080fd5b809150509250929050565b600080604083850312156113a857600080fd5b82356113b381611298565b9150602083013561138a81611298565b600181811c908216806113d757607f821691505b602082108114156113f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611427576114276113fe565b500190565b6000816000190483118215151615611446576114466113fe565b500290565b60008261146857634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561147f5761147f6113fe565b500390565b60006020828403121561149657600080fd5b815161135081611298565b80516001600160701b03811681146114b857600080fd5b919050565b6000806000606084860312156114d257600080fd5b6114db846114a1565b92506114e9602085016114a1565b9150604084015163ffffffff8116811461150257600080fd5b809150509250925092565b60006020828403121561151f57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561158c5784516001600160a01b031683529383019391830191600101611567565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fa856f824437898bc1c5070365fc5a7738dab5f07666c7136f6bb0f439eb8b5664736f6c634300080a00330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000037899e9c2c73b215e5b85a3f9eb70dbeccce4490
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101585760003560e01c806379cc6790116100c3578063a457c2d71161007c578063a457c2d71461031a578063a5afbcb81461032d578063a9059cbb14610340578063ad5c464814610353578063dd62ed3e1461037a578063f2fde38b1461038d57600080fd5b806379cc6790146102a157806385af30c5146102b457806386995783146102db5780638da5cb5b146102ee57806395623641146102ff57806395d89b411461031257600080fd5b8063376255c311610115578063376255c314610211578063395093511461022557806342966c68146102385780634b6b03181461024d57806370a0823114610270578063715018a61461029957600080fd5b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019e57806323b872dd146101b057806327dce847146101c3578063313ce56714610202575b600080fd5b6101656103a0565b6040516101729190611243565b60405180910390f35b61018e6101893660046112ad565b610432565b6040519015158152602001610172565b6002545b604051908152602001610172565b61018e6101be3660046112d9565b61044a565b6101ea7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610172565b60405160128152602001610172565b60075461018e90600160a01b900460ff1681565b61018e6102333660046112ad565b61046e565b61024b61024636600461131a565b610490565b005b61018e61025b366004611333565b60066020526000908152604090205460ff1681565b6101a261027e366004611333565b6001600160a01b031660009081526020819052604090205490565b61024b61049d565b61024b6102af3660046112ad565b6104b1565b6101ea7f00000000000000000000000021d5cca8916b2e34af84322a4ea79fd06d63df6681565b61024b6102e9366004611357565b6104ca565b6005546001600160a01b03166101ea565b6007546101ea906001600160a01b031681565b610165610555565b61018e6103283660046112ad565b610564565b61024b61033b366004611333565b6105df565b61018e61034e3660046112ad565b610643565b6101ea7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6101a2610388366004611395565b610651565b61024b61039b366004611333565b61067c565b6060600380546103af906113c3565b80601f01602080910402602001604051908101604052809291908181526020018280546103db906113c3565b80156104285780601f106103fd57610100808354040283529160200191610428565b820191906000526020600020905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b6000336104408185856106f2565b5060019392505050565b600033610458858285610816565b610463858585610890565b506001949350505050565b6000336104408185856104818383610651565b61048b9190611414565b6106f2565b61049a3382610a3c565b50565b6104a5610b6e565b6104af6000610bc8565b565b6104bc823383610816565b6104c68282610a3c565b5050565b6104d2610b6e565b6001600160a01b03821660009081526006602052604090205460ff161515811515141561052a5760405162461bcd60e51b81526020600482015260016024820152604160f81b60448201526064015b60405180910390fd5b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6060600480546103af906113c3565b600033816105728286610651565b9050838110156105d25760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610521565b61046382868684036106f2565b6105e7610b6e565b6001600160a01b0381166106215760405162461bcd60e51b81526020600482015260016024820152604160f81b6044820152606401610521565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b600033610440818585610890565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610684610b6e565b6001600160a01b0381166106e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610521565b61049a81610bc8565b6001600160a01b0383166107545760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610521565b6001600160a01b0382166107b55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610521565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006108228484610651565b9050600019811461088a578181101561087d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610521565b61088a84848484036106f2565b50505050565b6001600160a01b0383163014806108af57506001600160a01b03821630145b156108c4576108bf838383610c1a565b505050565b6001600160a01b038316600090815260066020526040812054819060ff168061090557506001600160a01b03841660009081526006602052604090205460ff165b1561098c57600080610918878787610dbe565b9150915081158015610928575080155b15610989576001600160a01b03871660009081526006602052604090205460ff161561096c57606461095b86600161142c565b610965919061144b565b9350610989565b60019250606461097c868561142c565b610986919061144b565b93505b50505b81156109aa5761099d853084610c1a565b6109a7828461146d565b92505b8080156109d15750306000908152602081905260409020546a108b2a2c2802909400000011155b15610a2a576007805460ff60a01b1916600160a01b179055610a1c610a0b306001600160a01b031660009081526020819052604090205490565b6007546001600160a01b031661111e565b6007805460ff60a01b191690555b610a35858585610c1a565b5050505050565b6001600160a01b038216610a9c5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610521565b6001600160a01b03821660009081526020819052604090205481811015610b105760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610521565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146104af5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610521565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610c7e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610521565b6001600160a01b038216610ce05760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610521565b6001600160a01b03831660009081526020819052604090205481811015610d585760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610521565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361088a565b6001600160a01b038216600090815260066020526040812054819060ff1615610f8f5760008490506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e26573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4a9190611484565b9050306001600160a01b03821614610f8c57600080836001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa158015610e9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ec191906114bd565b506001600160701b031691506001600160701b031691508160001415610eea5760019550610f89565b6040516370a0823160e01b81526001600160a01b038581166004830152600091908516906370a0823190602401602060405180830381865afa158015610f34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f58919061150d565b9050600282610f678a8661142c565b610f71919061144b565b610f7b919061144b565b610f859084611414565b1095505b50505b50505b6001600160a01b03851660009081526006602052604090205460ff16156111165760008590506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190611484565b9050306001600160a01b03821614611113576000826001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa15801561106b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108f91906114bd565b50506040516370a0823160e01b81526001600160a01b0385811660048301526001600160701b039290921692506000918416906370a0823190602401602060405180830381865afa1580156110e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061110c919061150d565b9091119350505b50505b935093915050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061115357611153611526565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2816001815181106111a7576111a7611526565b6001600160a01b03928316602091820292909201015260405163791ac94760e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063791ac9479061120c90869060009086908890429060040161153c565b600060405180830381600087803b15801561122657600080fd5b505af115801561123a573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b8181101561127057858101830151858201604001528201611254565b81811115611282576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461049a57600080fd5b600080604083850312156112c057600080fd5b82356112cb81611298565b946020939093013593505050565b6000806000606084860312156112ee57600080fd5b83356112f981611298565b9250602084013561130981611298565b929592945050506040919091013590565b60006020828403121561132c57600080fd5b5035919050565b60006020828403121561134557600080fd5b813561135081611298565b9392505050565b6000806040838503121561136a57600080fd5b823561137581611298565b91506020830135801515811461138a57600080fd5b809150509250929050565b600080604083850312156113a857600080fd5b82356113b381611298565b9150602083013561138a81611298565b600181811c908216806113d757607f821691505b602082108114156113f857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611427576114276113fe565b500190565b6000816000190483118215151615611446576114466113fe565b500290565b60008261146857634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561147f5761147f6113fe565b500390565b60006020828403121561149657600080fd5b815161135081611298565b80516001600160701b03811681146114b857600080fd5b919050565b6000806000606084860312156114d257600080fd5b6114db846114a1565b92506114e9602085016114a1565b9150604084015163ffffffff8116811461150257600080fd5b809150509250925092565b60006020828403121561151f57600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561158c5784516001600160a01b031683529383019391830191600101611567565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220fa856f824437898bc1c5070365fc5a7738dab5f07666c7136f6bb0f439eb8b5664736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d00000000000000000000000037899e9c2c73b215e5b85a3f9eb70dbeccce4490
-----Decoded View---------------
Arg [0] : swapV2RouterAddress_ (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : _marketAddress (address): 0x37899E9C2c73B215E5b85a3f9eb70DbECCce4490
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 00000000000000000000000037899e9c2c73b215e5b85a3f9eb70dbeccce4490
Deployed Bytecode Sourcemap
48751:4185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11703:201;;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11703:201:0;1072:187:1;10472:108:0;10560:12;;10472:108;;;1410:25:1;;;1398:2;1383:18;10472:108:0;1264:177:1;12484:261:0;;;;;;:::i;:::-;;:::i;48833:48::-;;;;;;;;-1:-1:-1;;;;;2098:32:1;;;2080:51;;2068:2;2053:18;48833:48:0;1907:230:1;10314:93:0;;;10397:2;2284:36:1;;2272:2;2257:18;10314:93:0;2142:184:1;49114:20:0;;;;;-1:-1:-1;;;49114:20:0;;;;;;13154:238;;;;;;:::i;:::-;;:::i;20925:91::-;;;;;;:::i;:::-;;:::i;:::-;;48888:43;;;;;;:::i;:::-;;;;;;;;;;;;;;;;10643:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10744:18:0;10717:7;10744:18;;;;;;;;;;;;10643:127;2778:103;;;:::i;21335:164::-;;;;;;:::i;:::-;;:::i;48938:33::-;;;;;51522:177;;;;;;:::i;:::-;;:::i;2137:87::-;2210:6;;-1:-1:-1;;;;;2210:6:0;2137:87;;48978:28;;;;;-1:-1:-1;;;;;48978:28:0;;;9562:104;;;:::i;13895:436::-;;;;;;:::i;:::-;;:::i;51707:172::-;;;;;;:::i;:::-;;:::i;10976:193::-;;;;;;:::i;:::-;;:::i;49078:29::-;;;;;11232:151;;;;;;:::i;:::-;;:::i;3036:201::-;;;;;;:::i;:::-;;:::i;9343:100::-;9397:13;9430:5;9423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9343:100;:::o;11703:201::-;11786:4;762:10;11842:32;762:10;11858:7;11867:6;11842:8;:32::i;:::-;-1:-1:-1;11892:4:0;;11703:201;-1:-1:-1;;;11703:201:0:o;12484:261::-;12581:4;762:10;12639:38;12655:4;762:10;12670:6;12639:15;:38::i;:::-;12688:27;12698:4;12704:2;12708:6;12688:9;:27::i;:::-;-1:-1:-1;12733:4:0;;12484:261;-1:-1:-1;;;;12484:261:0:o;13154:238::-;13242:4;762:10;13298:64;762:10;13314:7;13351:10;13323:25;762:10;13314:7;13323:9;:25::i;:::-;:38;;;;:::i;:::-;13298:8;:64::i;20925:91::-;20981:27;762:10;21001:6;20981:5;:27::i;:::-;20925:91;:::o;2778:103::-;2023:13;:11;:13::i;:::-;2843:30:::1;2870:1;2843:18;:30::i;:::-;2778:103::o:0;21335:164::-;21412:46;21428:7;762:10;21451:6;21412:15;:46::i;:::-;21469:22;21475:7;21484:6;21469:5;:22::i;:::-;21335:164;;:::o;51522:177::-;2023:13;:11;:13::i;:::-;-1:-1:-1;;;;;51617:18:0;::::1;;::::0;;;:11:::1;:18;::::0;;;;;::::1;;:29;;::::0;::::1;;;;51609:43;;;::::0;-1:-1:-1;;;51609:43:0;;4642:2:1;51609:43:0::1;::::0;::::1;4624:21:1::0;4681:1;4661:18;;;4654:29;-1:-1:-1;;;4699:18:1;;;4692:31;4740:18;;51609:43:0::1;;;;;;;;;-1:-1:-1::0;;;;;51663:18:0;;;::::1;;::::0;;;:11:::1;:18;::::0;;;;:28;;-1:-1:-1;;51663:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51522:177::o;9562:104::-;9618:13;9651:7;9644:14;;;;;:::i;13895:436::-;13988:4;762:10;13988:4;14071:25;762:10;14088:7;14071:9;:25::i;:::-;14044:52;;14135:15;14115:16;:35;;14107:85;;;;-1:-1:-1;;;14107:85:0;;4971:2:1;14107:85:0;;;4953:21:1;5010:2;4990:18;;;4983:30;5049:34;5029:18;;;5022:62;-1:-1:-1;;;5100:18:1;;;5093:35;5145:19;;14107:85:0;4769:401:1;14107:85:0;14228:60;14237:5;14244:7;14272:15;14253:16;:34;14228:8;:60::i;51707:172::-;2023:13;:11;:13::i;:::-;-1:-1:-1;;;;;51796:28:0;::::1;51788:42;;;::::0;-1:-1:-1;;;51788:42:0;;4642:2:1;51788:42:0::1;::::0;::::1;4624:21:1::0;4681:1;4661:18;;;4654:29;-1:-1:-1;;;4699:18:1;;;4692:31;4740:18;;51788:42:0::1;4440:324:1::0;51788:42:0::1;51841:13;:30:::0;;-1:-1:-1;;;;;;51841:30:0::1;-1:-1:-1::0;;;;;51841:30:0;;;::::1;::::0;;;::::1;::::0;;51707:172::o;10976:193::-;11055:4;762:10;11111:28;762:10;11128:2;11132:6;11111:9;:28::i;11232:151::-;-1:-1:-1;;;;;11348:18:0;;;11321:7;11348:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11232:151::o;3036:201::-;2023:13;:11;:13::i;:::-;-1:-1:-1;;;;;3125:22:0;::::1;3117:73;;;::::0;-1:-1:-1;;;3117:73:0;;5377:2:1;3117:73:0::1;::::0;::::1;5359:21:1::0;5416:2;5396:18;;;5389:30;5455:34;5435:18;;;5428:62;-1:-1:-1;;;5506:18:1;;;5499:36;5552:19;;3117:73:0::1;5175:402:1::0;3117:73:0::1;3201:28;3220:8;3201:18;:28::i;17888:346::-:0;-1:-1:-1;;;;;17990:19:0;;17982:68;;;;-1:-1:-1;;;17982:68:0;;5784:2:1;17982:68:0;;;5766:21:1;5823:2;5803:18;;;5796:30;5862:34;5842:18;;;5835:62;-1:-1:-1;;;5913:18:1;;;5906:34;5957:19;;17982:68:0;5582:400:1;17982:68:0;-1:-1:-1;;;;;18069:21:0;;18061:68;;;;-1:-1:-1;;;18061:68:0;;6189:2:1;18061:68:0;;;6171:21:1;6228:2;6208:18;;;6201:30;6267:34;6247:18;;;6240:62;-1:-1:-1;;;6318:18:1;;;6311:32;6360:19;;18061:68:0;5987:398:1;18061:68:0;-1:-1:-1;;;;;18142:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18194:32;;1410:25:1;;;18194:32:0;;1383:18:1;18194:32:0;;;;;;;17888:346;;;:::o;18525:419::-;18626:24;18653:25;18663:5;18670:7;18653:9;:25::i;:::-;18626:52;;-1:-1:-1;;18693:16:0;:37;18689:248;;18775:6;18755:16;:26;;18747:68;;;;-1:-1:-1;;;18747:68:0;;6592:2:1;18747:68:0;;;6574:21:1;6631:2;6611:18;;;6604:30;6670:31;6650:18;;;6643:59;6719:18;;18747:68:0;6390:353:1;18747:68:0;18859:51;18868:5;18875:7;18903:6;18884:16;:25;18859:8;:51::i;:::-;18615:329;18525:419;;;:::o;49977:1154::-;-1:-1:-1;;;;;50114:23:0;;50132:4;50114:23;;:53;;-1:-1:-1;;;;;;50141:26:0;;50162:4;50141:26;50114:53;50110:148;;;50183:42;50199:6;50207:9;50218:6;50183:15;:42::i;:::-;49977:1154;;;:::o;50110:148::-;-1:-1:-1;;;;;50327:19:0;;50278:12;50327:19;;;:11;:19;;;;;;50278:12;;50327:19;;;:45;;-1:-1:-1;;;;;;50350:22:0;;;;;;:11;:22;;;;;;;;50327:45;50324:412;;;50389:10;50401;50415:39;50428:6;50436:9;50447:6;50415:12;:39::i;:::-;50388:66;;;;50474:5;50473:6;:16;;;;;50484:5;50483:6;50473:16;50469:256;;;-1:-1:-1;;;;;50513:19:0;;;;;;:11;:19;;;;;;;;50509:201;;;50578:3;50565:10;:6;50574:1;50565:10;:::i;:::-;:16;;;;:::i;:::-;50558:23;;50509:201;;;50640:4;;-1:-1:-1;50687:3:0;50674:10;:6;50640:4;50674:10;:::i;:::-;:16;;;;:::i;:::-;50667:23;;50509:201;50373:363;;50324:412;50750:8;;50746:113;;50774:44;50790:6;50806:4;50813;50774:15;:44::i;:::-;50833:14;50843:4;50833:14;;:::i;:::-;;;50746:113;50873:7;:54;;;;-1:-1:-1;50902:4:0;10717:7;10744:18;;;;;;;;;;;49048:23;-1:-1:-1;50884:43:0;50873:54;50869:202;;;50943:8;:15;;-1:-1:-1;;;;50943:15:0;-1:-1:-1;;;50943:15:0;;;50973:55;50988:24;51006:4;-1:-1:-1;;;;;10744:18:0;10717:7;10744:18;;;;;;;;;;;;10643:127;50988:24;51014:13;;-1:-1:-1;;;;;51014:13:0;50973:14;:55::i;:::-;51043:8;:16;;-1:-1:-1;;;;51043:16:0;;;50869:202;51081:42;51097:6;51105:9;51116:6;51081:15;:42::i;:::-;50099:1032;;49977:1154;;;:::o;16775:675::-;-1:-1:-1;;;;;16859:21:0;;16851:67;;;;-1:-1:-1;;;16851:67:0;;7475:2:1;16851:67:0;;;7457:21:1;7514:2;7494:18;;;7487:30;7553:34;7533:18;;;7526:62;-1:-1:-1;;;7604:18:1;;;7597:31;7645:19;;16851:67:0;7273:397:1;16851:67:0;-1:-1:-1;;;;;17018:18:0;;16993:22;17018:18;;;;;;;;;;;17055:24;;;;17047:71;;;;-1:-1:-1;;;17047:71:0;;7877:2:1;17047:71:0;;;7859:21:1;7916:2;7896:18;;;7889:30;7955:34;7935:18;;;7928:62;-1:-1:-1;;;8006:18:1;;;7999:32;8048:19;;17047:71:0;7675:398:1;17047:71:0;-1:-1:-1;;;;;17154:18:0;;:9;:18;;;;;;;;;;;17175:23;;;17154:44;;17293:12;:22;;;;;;;17344:37;1410:25:1;;;17154:9:0;;:18;17344:37;;1383:18:1;17344:37:0;;;;;;;49977:1154;;;:::o;2302:132::-;2210:6;;-1:-1:-1;;;;;2210:6:0;762:10;2366:23;2358:68;;;;-1:-1:-1;;;2358:68:0;;8280:2:1;2358:68:0;;;8262:21:1;;;8299:18;;;8292:30;8358:34;8338:18;;;8331:62;8410:18;;2358:68:0;8078:356:1;3397:191:0;3490:6;;;-1:-1:-1;;;;;3507:17:0;;;-1:-1:-1;;;;;;3507:17:0;;;;;;;3540:40;;3490:6;;;3507:17;3490:6;;3540:40;;3471:16;;3540:40;3460:128;3397:191;:::o;14801:806::-;-1:-1:-1;;;;;14898:18:0;;14890:68;;;;-1:-1:-1;;;14890:68:0;;8641:2:1;14890:68:0;;;8623:21:1;8680:2;8660:18;;;8653:30;8719:34;8699:18;;;8692:62;-1:-1:-1;;;8770:18:1;;;8763:35;8815:19;;14890:68:0;8439:401:1;14890:68:0;-1:-1:-1;;;;;14977:16:0;;14969:64;;;;-1:-1:-1;;;14969:64:0;;9047:2:1;14969:64:0;;;9029:21:1;9086:2;9066:18;;;9059:30;9125:34;9105:18;;;9098:62;-1:-1:-1;;;9176:18:1;;;9169:33;9219:19;;14969:64:0;8845:399:1;14969:64:0;-1:-1:-1;;;;;15119:15:0;;15097:19;15119:15;;;;;;;;;;;15153:21;;;;15145:72;;;;-1:-1:-1;;;15145:72:0;;9451:2:1;15145:72:0;;;9433:21:1;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;-1:-1:-1;;;9580:18:1;;;9573:36;9626:19;;15145:72:0;9249:402:1;15145:72:0;-1:-1:-1;;;;;15253:15:0;;;:9;:15;;;;;;;;;;;15271:20;;;15253:38;;15471:13;;;;;;;;;;:23;;;;;;15523:26;;1410:25:1;;;15471:13:0;;15523:26;;1383:18:1;15523:26:0;;;;;;;15562:37;49977:1154;51889:1044;-1:-1:-1;;;;;52012:15:0;;51976:10;52012:15;;;:11;:15;;;;;;51976:10;;52012:15;;52009:522;;;52043:20;52081:2;52043:41;;52099:15;52117:5;-1:-1:-1;;;;;52117:12:0;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52099:32;-1:-1:-1;52158:4:0;-1:-1:-1;;;;;52150:24:0;;;52146:374;;52196:10;52208;52223:5;-1:-1:-1;;;;;52223:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52195:47;-1:-1:-1;;;;;52195:47:0;;;-1:-1:-1;;;;;52195:47:0;;;52265:2;52271:1;52265:7;52261:244;;;52304:4;52296:12;;52261:244;;;52376:41;;-1:-1:-1;;;52376:41:0;;-1:-1:-1;;;;;2098:32:1;;;52376:41:0;;;2080:51:1;52356:17:0;;52376:25;;;;;;2053:18:1;;52376:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52356:61;-1:-1:-1;52484:1:0;52479:2;52465:11;52470:6;52465:2;:11;:::i;:::-;:16;;;;:::i;:::-;:20;;;;:::i;:::-;52460:25;;:2;:25;:::i;:::-;-1:-1:-1;52448:37:0;-1:-1:-1;52261:244:0;52175:345;;52146:374;52028:503;;52009:522;-1:-1:-1;;;;;52554:17:0;;;;;;:11;:17;;;;;;;;52551:375;;;52587:20;52625:4;52587:43;;52645:15;52663:5;-1:-1:-1;;;;;52663:12:0;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52645:32;-1:-1:-1;52704:4:0;-1:-1:-1;;;;;52696:24:0;;;52692:223;;52742:10;52759:5;-1:-1:-1;;;;;52759:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;52817:41:0;;-1:-1:-1;;;52817:41:0;;-1:-1:-1;;;;;2098:32:1;;;52817:41:0;;;2080:51:1;-1:-1:-1;;;;;52741:37:0;;;;;-1:-1:-1;52797:17:0;;52817:25;;;;;2053:18:1;;52817:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52884:14;;;;-1:-1:-1;;52692:223:0;52572:354;;52551:375;51889:1044;;;;;;:::o;51139:375::-;51238:16;;;51252:1;51238:16;;;;;;;;51213:22;;51238:16;;;;;;;;;;-1:-1:-1;51238:16:0;51213:41;;51284:4;51265:5;51271:1;51265:8;;;;;;;;:::i;:::-;;;;;;:24;-1:-1:-1;;;;;51265:24:0;;;-1:-1:-1;;;;;51265:24:0;;;;;51311:4;51300:5;51306:1;51300:8;;;;;;;;:::i;:::-;-1:-1:-1;;;;;51300:15:0;;;:8;;;;;;;;;:15;51326:180;;-1:-1:-1;;;51326:180:0;;:12;:63;;;;;;:180;;51404:7;;51426:1;;51442:5;;51462:3;;51480:15;;51326:180;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51202:312;51139:375;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:456::-;1523:6;1531;1539;1592:2;1580:9;1571:7;1567:23;1563:32;1560:52;;;1608:1;1605;1598:12;1560:52;1647:9;1634:23;1666:31;1691:5;1666:31;:::i;:::-;1716:5;-1:-1:-1;1773:2:1;1758:18;;1745:32;1786:33;1745:32;1786:33;:::i;:::-;1446:456;;1838:7;;-1:-1:-1;;;1892:2:1;1877:18;;;;1864:32;;1446:456::o;2331:180::-;2390:6;2443:2;2431:9;2422:7;2418:23;2414:32;2411:52;;;2459:1;2456;2449:12;2411:52;-1:-1:-1;2482:23:1;;2331:180;-1:-1:-1;2331:180:1:o;2516:247::-;2575:6;2628:2;2616:9;2607:7;2603:23;2599:32;2596:52;;;2644:1;2641;2634:12;2596:52;2683:9;2670:23;2702:31;2727:5;2702:31;:::i;:::-;2752:5;2516:247;-1:-1:-1;;;2516:247:1:o;2976:416::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3283:2:1;3268:18;;3255:32;3325:15;;3318:23;3306:36;;3296:64;;3356:1;3353;3346:12;3296:64;3379:7;3369:17;;;2976:416;;;;;:::o;3397:388::-;3465:6;3473;3526:2;3514:9;3505:7;3501:23;3497:32;3494:52;;;3542:1;3539;3532:12;3494:52;3581:9;3568:23;3600:31;3625:5;3600:31;:::i;:::-;3650:5;-1:-1:-1;3707:2:1;3692:18;;3679:32;3720:33;3679:32;3720:33;:::i;3790:380::-;3869:1;3865:12;;;;3912;;;3933:61;;3987:4;3979:6;3975:17;3965:27;;3933:61;4040:2;4032:6;4029:14;4009:18;4006:38;4003:161;;;4086:10;4081:3;4077:20;4074:1;4067:31;4121:4;4118:1;4111:15;4149:4;4146:1;4139:15;4003:161;;3790:380;;;:::o;4175:127::-;4236:10;4231:3;4227:20;4224:1;4217:31;4267:4;4264:1;4257:15;4291:4;4288:1;4281:15;4307:128;4347:3;4378:1;4374:6;4371:1;4368:13;4365:39;;;4384:18;;:::i;:::-;-1:-1:-1;4420:9:1;;4307:128::o;6748:168::-;6788:7;6854:1;6850;6846:6;6842:14;6839:1;6836:21;6831:1;6824:9;6817:17;6813:45;6810:71;;;6861:18;;:::i;:::-;-1:-1:-1;6901:9:1;;6748:168::o;6921:217::-;6961:1;6987;6977:132;;7031:10;7026:3;7022:20;7019:1;7012:31;7066:4;7063:1;7056:15;7094:4;7091:1;7084:15;6977:132;-1:-1:-1;7123:9:1;;6921:217::o;7143:125::-;7183:4;7211:1;7208;7205:8;7202:34;;;7216:18;;:::i;:::-;-1:-1:-1;7253:9:1;;7143:125::o;9656:251::-;9726:6;9779:2;9767:9;9758:7;9754:23;9750:32;9747:52;;;9795:1;9792;9785:12;9747:52;9827:9;9821:16;9846:31;9871:5;9846:31;:::i;9912:188::-;9991:13;;-1:-1:-1;;;;;10033:42:1;;10023:53;;10013:81;;10090:1;10087;10080:12;10013:81;9912:188;;;:::o;10105:450::-;10192:6;10200;10208;10261:2;10249:9;10240:7;10236:23;10232:32;10229:52;;;10277:1;10274;10267:12;10229:52;10300:40;10330:9;10300:40;:::i;:::-;10290:50;;10359:49;10404:2;10393:9;10389:18;10359:49;:::i;:::-;10349:59;;10451:2;10440:9;10436:18;10430:25;10495:10;10488:5;10484:22;10477:5;10474:33;10464:61;;10521:1;10518;10511:12;10464:61;10544:5;10534:15;;;10105:450;;;;;:::o;10560:184::-;10630:6;10683:2;10671:9;10662:7;10658:23;10654:32;10651:52;;;10699:1;10696;10689:12;10651:52;-1:-1:-1;10722:16:1;;10560:184;-1:-1:-1;10560:184:1:o;10881:127::-;10942:10;10937:3;10933:20;10930:1;10923:31;10973:4;10970:1;10963:15;10997:4;10994:1;10987:15;11013:980;11275:4;11323:3;11312:9;11308:19;11354:6;11343:9;11336:25;11380:2;11418:6;11413:2;11402:9;11398:18;11391:34;11461:3;11456:2;11445:9;11441:18;11434:31;11485:6;11520;11514:13;11551:6;11543;11536:22;11589:3;11578:9;11574:19;11567:26;;11628:2;11620:6;11616:15;11602:29;;11649:1;11659:195;11673:6;11670:1;11667:13;11659:195;;;11738:13;;-1:-1:-1;;;;;11734:39:1;11722:52;;11829:15;;;;11794:12;;;;11770:1;11688:9;11659:195;;;-1:-1:-1;;;;;;;11910:32:1;;;;11905:2;11890:18;;11883:60;-1:-1:-1;;;11974:3:1;11959:19;11952:35;11871:3;11013:980;-1:-1:-1;;;11013:980:1:o
Swarm Source
ipfs://fa856f824437898bc1c5070365fc5a7738dab5f07666c7136f6bb0f439eb8b56
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.