ERC-20
Overview
Max Total Supply
100,000,000 PRINT
Holders
751
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000194895 PRINTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PRINT
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Website: http://print.fun Twitter: https://x.com/printdotfun Telegram: https://t.me/printdotfun */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens(uint256 amountIn,uint256 amountOutMin,address[] calldata path,address to,uint256 deadline) external; function factory() external pure returns (address); function WETH() external pure 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); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract PRINT is ERC20, Ownable { uint256 private buyTax = 20; uint256 private sellTax = 25; IUniswapV2Router02 private uniswapV2Router; address public uniswapV2Pair; mapping(address => bool) public isExempt; address private immutable marketingAddress; address private immutable taxAddress; uint256 public maxTransactionAmount; uint256 public maxTxLaunch; bool private launch = false; bool private slowLaunch = true; uint256 private blockLaunch; uint256 private lastSellBlock; uint256 private sellCount; uint256 private minSwap; uint256 private maxSwap; uint256 private _buyCount= 0; bool private inSwap; modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor( address _taxAddress, address _marketingAddress, address _rewards, address _private, address _cex ) ERC20("PRINT", "PRINT") Ownable() { uint256 totalSupply = 100000000 * 10**18; marketingAddress = _marketingAddress; taxAddress = _taxAddress; isExempt[msg.sender] = true; isExempt[address(this)] = true; isExempt[_rewards] = true; isExempt[marketingAddress] = true; isExempt[taxAddress] = true; isExempt[_private] = true; isExempt[_cex] = true; _mint(_cex, totalSupply * 4 / 100); _mint(marketingAddress, totalSupply * 6 / 100); _mint(_rewards, totalSupply * 20 / 100); _mint(_private, totalSupply * 20 / 100); _mint(msg.sender, totalSupply * 50 / 100); uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Pair = address( IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()) ); maxTransactionAmount = totalSupply * 2 / 100; maxTxLaunch = totalSupply * 5 / 1000; maxSwap = 250000 * 10**18; minSwap = 25000 * 10**18; } function addLiquidity() external onlyOwner { _approve(address(this), address(uniswapV2Router), balanceOf(address(this))); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function getMinCASwap() public view returns (uint256){ return minSwap / 10**decimals(); } function setMaxCASwap(uint256 _maxSwap) external onlyOwner{ maxSwap = _maxSwap * 10**decimals(); } function setMinSwap(uint256 _minSwap) external onlyOwner{ minSwap = _minSwap * 10**decimals(); } function switchCaSell() external onlyOwner { if (inSwap){ inSwap = false; } else { inSwap = true; } } function deactivateSlowLaunch() external onlyOwner { slowLaunch = false; } function getMaxCASwap() public view returns (uint256){ return maxSwap / 10**decimals(); } function swapTokensEth(uint256 tokenAmount) internal lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, taxAddress, block.timestamp ); } function _transfer(address from, address to, uint256 value) internal virtual override { if (!isExempt[from] && !isExempt[to]) { require(launch); uint256 tax = 0; if (slowLaunch && blockLaunch!=block.number){ require(value <= maxTxLaunch, "MAX TX LIMIT"); } else { require(value <= maxTransactionAmount, "MAX TX LIMIT"); } if (to == uniswapV2Pair) { tax = sellTax; uint256 tokensSwap = balanceOf(address(this)); if (tokensSwap > minSwap && !inSwap) { if (block.number > lastSellBlock) { sellCount = 0; } if (sellCount < 3){ sellCount++; lastSellBlock = block.number; swapTokensEth(min(maxSwap, min(value, tokensSwap))); } } } else if (from == uniswapV2Pair){ tax = buyTax; if(block.number == blockLaunch){ _buyCount++; tax = 0; require(_buyCount <= 15,"Exceeds buys on the first block."); } } uint256 taxAmount = value * tax / 100; uint256 amountAfterTax = value - taxAmount; if (taxAmount > 0){ super._transfer(from, address(this), taxAmount); } super._transfer(from, to, amountAfterTax); return; } super._transfer(from, to, value); } function min(uint256 a, uint256 b) private pure returns (uint256){ return (a>b)?b:a; } function setTax(uint256 newBuyTax , uint256 newSellTax) external onlyOwner { require(newBuyTax < 20 && newSellTax < 20); sellTax = newSellTax; buyTax = newBuyTax; } function setMaxTx(uint256 newMaxTx) external onlyOwner { maxTransactionAmount = newMaxTx * 10**decimals(); } function removeAllLimits() external onlyOwner { maxTransactionAmount = totalSupply(); } function exportETH() external { payable(marketingAddress).transfer(address(this).balance); } function setExcludedWallet(address wAddress, bool isExcle) external onlyOwner { isExempt[wAddress] = isExcle; } function openTrading() external onlyOwner { launch = true; blockLaunch = block.number; } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_taxAddress","type":"address"},{"internalType":"address","name":"_marketingAddress","type":"address"},{"internalType":"address","name":"_rewards","type":"address"},{"internalType":"address","name":"_private","type":"address"},{"internalType":"address","name":"_cex","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":"addLiquidity","outputs":[],"stateMutability":"nonpayable","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":"deactivateSlowLaunch","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":[],"name":"exportETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMaxCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinCASwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"isExempt","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wAddress","type":"address"},{"internalType":"bool","name":"isExcle","type":"bool"}],"name":"setExcludedWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSwap","type":"uint256"}],"name":"setMaxCASwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minSwap","type":"uint256"}],"name":"setMinSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyTax","type":"uint256"},{"internalType":"uint256","name":"newSellTax","type":"uint256"}],"name":"setTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchCaSell","outputs":[],"stateMutability":"nonpayable","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052601460065560196007555f600d5f6101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055505f60135534801562000052575f80fd5b5060405162003a7338038062003a73833981810160405281019062000078919062000a26565b6040518060400160405280600581526020017f5052494e540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5052494e540000000000000000000000000000000000000000000000000000008152508160039081620000f5919062000d0e565b50806004908162000107919062000d0e565b5050506200012a6200011e6200078860201b60201c565b6200078f60201b60201c565b5f6a52b7d2dcc80cd2e400000090508473ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508573ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f60a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550620004268260646004846200040e919062000e1f565b6200041a919062000e96565b6200085260201b60201c565b6200045660805160646006846200043e919062000e1f565b6200044a919062000e96565b6200085260201b60201c565b620004848460646014846200046c919062000e1f565b62000478919062000e96565b6200085260201b60201c565b620004b28360646014846200049a919062000e1f565b620004a6919062000e96565b6200085260201b60201c565b620004e0336064603284620004c8919062000e1f565b620004d4919062000e96565b6200085260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200059f573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620005c5919062000ecd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200064c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000672919062000ecd565b6040518363ffffffff1660e01b81526004016200069192919062000f0e565b6020604051808303815f875af1158015620006ae573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620006d4919062000ecd565b60095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550606460028262000724919062000e1f565b62000730919062000e96565b600b819055506103e860058262000748919062000e1f565b62000754919062000e96565b600c819055506934f086f3b33b6840000060128190555069054b40b1f852bda000006011819055505050505050506200101d565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008c3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ba9062000f97565b60405180910390fd5b620008d65f8383620009b760201b60201c565b8060025f828254620008e9919062000fb7565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000998919062001002565b60405180910390a3620009b35f8383620009bc60201b60201c565b5050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009f082620009c5565b9050919050565b62000a0281620009e4565b811462000a0d575f80fd5b50565b5f8151905062000a2081620009f7565b92915050565b5f805f805f60a0868803121562000a425762000a41620009c1565b5b5f62000a518882890162000a10565b955050602062000a648882890162000a10565b945050604062000a778882890162000a10565b935050606062000a8a8882890162000a10565b925050608062000a9d8882890162000a10565b9150509295509295909350565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b2657607f821691505b60208210810362000b3c5762000b3b62000ae1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000ba07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b63565b62000bac868362000b63565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000bf662000bf062000bea8462000bc4565b62000bcd565b62000bc4565b9050919050565b5f819050919050565b62000c118362000bd6565b62000c2962000c208262000bfd565b84845462000b6f565b825550505050565b5f90565b62000c3f62000c31565b62000c4c81848462000c06565b505050565b5b8181101562000c735762000c675f8262000c35565b60018101905062000c52565b5050565b601f82111562000cc25762000c8c8162000b42565b62000c978462000b54565b8101602085101562000ca7578190505b62000cbf62000cb68562000b54565b83018262000c51565b50505b505050565b5f82821c905092915050565b5f62000ce45f198460080262000cc7565b1980831691505092915050565b5f62000cfe838362000cd3565b9150826002028217905092915050565b62000d198262000aaa565b67ffffffffffffffff81111562000d355762000d3462000ab4565b5b62000d41825462000b0e565b62000d4e82828562000c77565b5f60209050601f83116001811462000d84575f841562000d6f578287015190505b62000d7b858262000cf1565b86555062000dea565b601f19841662000d948662000b42565b5f5b8281101562000dbd5784890151825560018201915060208501945060208101905062000d96565b8683101562000ddd578489015162000dd9601f89168262000cd3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000e2b8262000bc4565b915062000e388362000bc4565b925082820262000e488162000bc4565b9150828204841483151762000e625762000e6162000df2565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000ea28262000bc4565b915062000eaf8362000bc4565b92508262000ec25762000ec162000e69565b5b828204905092915050565b5f6020828403121562000ee55762000ee4620009c1565b5b5f62000ef48482850162000a10565b91505092915050565b62000f0881620009e4565b82525050565b5f60408201905062000f235f83018562000efd565b62000f32602083018462000efd565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000f7f601f8362000f39565b915062000f8c8262000f49565b602082019050919050565b5f6020820190508181035f83015262000fb08162000f71565b9050919050565b5f62000fc38262000bc4565b915062000fd08362000bc4565b925082820190508082111562000feb5762000fea62000df2565b5b92915050565b62000ffc8162000bc4565b82525050565b5f602082019050620010175f83018462000ff1565b92915050565b60805160a051612a346200103f5f395f6117c701525f610ba10152612a345ff3fe6080604052600436106101db575f3560e01c8063a457c2d711610101578063c9567bf911610094578063db05e5cb11610063578063db05e5cb14610664578063dd62ed3e1461067a578063e8078d94146106b6578063f2fde38b146106cc576101e2565b8063c9567bf9146105fa578063d579d4ed14610610578063d7acde1f14610626578063da81a85a1461064e576101e2565b8063aca2cd6e116100d0578063aca2cd6e14610544578063ad5dff731461056c578063bc337182146105a8578063c8c8ebe4146105d0576101e2565b8063a457c2d71461047a578063a508de62146104b6578063a9059cbb146104e0578063a9e282b81461051c576101e2565b8063395093511161017957806370a082311161014857806370a08231146103d4578063715018a6146104105780638da5cb5b1461042657806395d89b4114610450576101e2565b8063395093511461031c57806349bd5a5e146103585780634b203e1b14610382578063667f6526146103ac576101e2565b806318160ddd116101b557806318160ddd14610276578063184619d3146102a057806323b872dd146102b6578063313ce567146102f2576101e2565b806306fdde03146101e6578063084cf61514610210578063095ea7b31461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f4565b6040516102079190611b51565b60405180910390f35b34801561021b575f80fd5b50610224610784565b6040516102319190611b89565b60405180910390f35b348015610245575f80fd5b50610260600480360381019061025b9190611c2a565b61078a565b60405161026d9190611c82565b60405180910390f35b348015610281575f80fd5b5061028a6107ac565b6040516102979190611b89565b60405180910390f35b3480156102ab575f80fd5b506102b46107b5565b005b3480156102c1575f80fd5b506102dc60048036038101906102d79190611c9b565b6107d9565b6040516102e99190611c82565b60405180910390f35b3480156102fd575f80fd5b50610306610807565b6040516103139190611d06565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611c2a565b61080f565b60405161034f9190611c82565b60405180910390f35b348015610363575f80fd5b5061036c610845565b6040516103799190611d2e565b60405180910390f35b34801561038d575f80fd5b5061039661086a565b6040516103a39190611b89565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190611d47565b610891565b005b3480156103df575f80fd5b506103fa60048036038101906103f59190611d85565b6108c3565b6040516104079190611b89565b60405180910390f35b34801561041b575f80fd5b50610424610908565b005b348015610431575f80fd5b5061043a61091b565b6040516104479190611d2e565b60405180910390f35b34801561045b575f80fd5b50610464610943565b6040516104719190611b51565b60405180910390f35b348015610485575f80fd5b506104a0600480360381019061049b9190611c2a565b6109d3565b6040516104ad9190611c82565b60405180910390f35b3480156104c1575f80fd5b506104ca610a48565b6040516104d79190611b89565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190611c2a565b610a6f565b6040516105139190611c82565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d9190611db0565b610a91565b005b34801561054f575f80fd5b5061056a60048036038101906105659190611e05565b610ac1565b005b348015610577575f80fd5b50610592600480360381019061058d9190611d85565b610b21565b60405161059f9190611c82565b60405180910390f35b3480156105b3575f80fd5b506105ce60048036038101906105c99190611db0565b610b3e565b005b3480156105db575f80fd5b506105e4610b6e565b6040516105f19190611b89565b60405180910390f35b348015610605575f80fd5b5061060e610b74565b005b34801561061b575f80fd5b50610624610b9f565b005b348015610631575f80fd5b5061064c60048036038101906106479190611db0565b610c05565b005b348015610659575f80fd5b50610662610c35565b005b34801561066f575f80fd5b50610678610c8c565b005b348015610685575f80fd5b506106a0600480360381019061069b9190611e43565b610ca4565b6040516106ad9190611b89565b60405180910390f35b3480156106c1575f80fd5b506106ca610d26565b005b3480156106d7575f80fd5b506106f260048036038101906106ed9190611d85565b610e1c565b005b60606003805461070390611eae565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90611eae565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600c5481565b5f80610794610e9e565b90506107a1818585610ea5565b600191505092915050565b5f600254905090565b6107bd611068565b5f600d60016101000a81548160ff021916908315150217905550565b5f806107e3610e9e565b90506107f08582856110e6565b6107fb858585611171565b60019150509392505050565b5f6012905090565b5f80610819610e9e565b905061083a81858561082b8589610ca4565b6108359190611f0b565b610ea5565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610873610807565b600a61087f919061206d565b60115461088c91906120e4565b905090565b610899611068565b6014821080156108a95750601481105b6108b1575f80fd5b80600781905550816006819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610910611068565b6109195f6114ed565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095290611eae565b80601f016020809104026020016040519081016040528092919081815260200182805461097e90611eae565b80156109c95780601f106109a0576101008083540402835291602001916109c9565b820191905f5260205f20905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b5f806109dd610e9e565b90505f6109ea8286610ca4565b905083811015610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612184565b60405180910390fd5b610a3c8286868403610ea5565b60019250505092915050565b5f610a51610807565b600a610a5d919061206d565b601254610a6a91906120e4565b905090565b5f80610a79610e9e565b9050610a86818585611171565b600191505092915050565b610a99611068565b610aa1610807565b600a610aad919061206d565b81610ab891906121a2565b60118190555050565b610ac9611068565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b610b46611068565b610b4e610807565b600a610b5a919061206d565b81610b6591906121a2565b600b8190555050565b600b5481565b610b7c611068565b6001600d5f6101000a81548160ff02191690831515021790555043600e81905550565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c02573d5f803e3d5ffd5b50565b610c0d611068565b610c15610807565b600a610c21919061206d565b81610c2c91906121a2565b60128190555050565b610c3d611068565b60145f9054906101000a900460ff1615610c6f575f60145f6101000a81548160ff021916908315150217905550610c8a565b600160145f6101000a81548160ff0219169083151502179055505b565b610c94611068565b610c9c6107ac565b600b81905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d2e611068565b610d623060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5d306108c3565b610ea5565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610daa306108c3565b5f80610db461091b565b426040518863ffffffff1660e01b8152600401610dd696959493929190612225565b60606040518083038185885af1158015610df2573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e179190612298565b505050565b610e24611068565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990612358565b60405180910390fd5b610e9b816114ed565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906123e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612474565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611b89565b60405180910390a3505050565b611070610e9e565b73ffffffffffffffffffffffffffffffffffffffff1661108e61091b565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906124dc565b60405180910390fd5b565b5f6110f18484610ca4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116b578181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612544565b60405180910390fd5b61116a8484848403610ea5565b5b50505050565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561120f5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156114dc57600d5f9054906101000a900460ff1661122b575f80fd5b5f600d60019054906101000a900460ff16801561124a575043600e5414155b1561129957600c54821115611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906125ac565b60405180910390fd5b6112df565b600b548211156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906125ac565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c65760075490505f611342306108c3565b905060115481118015611361575060145f9054906101000a900460ff16155b156113c057600f54431115611378575f6010819055505b600360105410156113bf5760105f815480929190611395906125ca565b919050555043600f819055506113be6113b96012546113b486856115b0565b6115b0565b6115c8565b5b5b5061148b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148a576006549050600e5443036114895760135f81548092919061143a906125ca565b91905055505f9050600f6013541115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f9061265b565b60405180910390fd5b5b5b5b5f6064828461149a91906121a2565b6114a491906120e4565b90505f81846114b39190612679565b90505f8211156114c9576114c8863084611851565b5b6114d4868683611851565b5050506114e8565b6114e7838383611851565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116115be57826115c0565b815b905092915050565b600160145f6101000a81548160ff02191690831515021790555061160e3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610ea5565b5f600267ffffffffffffffff81111561162a576116296126ac565b5b6040519080825280602002602001820160405280156116585781602001602082028036833780820191505090505b50905030815f8151811061166f5761166e6126d9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611737919061271a565b8160018151811061174b5761174a6126d9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f0000000000000000000000000000000000000000000000000000000000000000426040518663ffffffff1660e01b81526004016118079594939291906127fc565b5f604051808303815f87803b15801561181e575f80fd5b505af1158015611830573d5f803e3d5ffd5b50505050505f60145f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906128c4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490612952565b60405180910390fd5b611938838383611abd565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906129e0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa49190611b89565b60405180910390a3611ab7848484611ac2565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611afe578082015181840152602081019050611ae3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b2382611ac7565b611b2d8185611ad1565b9350611b3d818560208601611ae1565b611b4681611b09565b840191505092915050565b5f6020820190508181035f830152611b698184611b19565b905092915050565b5f819050919050565b611b8381611b71565b82525050565b5f602082019050611b9c5f830184611b7a565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bcf82611ba6565b9050919050565b611bdf81611bc5565b8114611be9575f80fd5b50565b5f81359050611bfa81611bd6565b92915050565b611c0981611b71565b8114611c13575f80fd5b50565b5f81359050611c2481611c00565b92915050565b5f8060408385031215611c4057611c3f611ba2565b5b5f611c4d85828601611bec565b9250506020611c5e85828601611c16565b9150509250929050565b5f8115159050919050565b611c7c81611c68565b82525050565b5f602082019050611c955f830184611c73565b92915050565b5f805f60608486031215611cb257611cb1611ba2565b5b5f611cbf86828701611bec565b9350506020611cd086828701611bec565b9250506040611ce186828701611c16565b9150509250925092565b5f60ff82169050919050565b611d0081611ceb565b82525050565b5f602082019050611d195f830184611cf7565b92915050565b611d2881611bc5565b82525050565b5f602082019050611d415f830184611d1f565b92915050565b5f8060408385031215611d5d57611d5c611ba2565b5b5f611d6a85828601611c16565b9250506020611d7b85828601611c16565b9150509250929050565b5f60208284031215611d9a57611d99611ba2565b5b5f611da784828501611bec565b91505092915050565b5f60208284031215611dc557611dc4611ba2565b5b5f611dd284828501611c16565b91505092915050565b611de481611c68565b8114611dee575f80fd5b50565b5f81359050611dff81611ddb565b92915050565b5f8060408385031215611e1b57611e1a611ba2565b5b5f611e2885828601611bec565b9250506020611e3985828601611df1565b9150509250929050565b5f8060408385031215611e5957611e58611ba2565b5b5f611e6685828601611bec565b9250506020611e7785828601611bec565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ec557607f821691505b602082108103611ed857611ed7611e81565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f1582611b71565b9150611f2083611b71565b9250828201905080821115611f3857611f37611ede565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611f9357808604811115611f6f57611f6e611ede565b5b6001851615611f7e5780820291505b8081029050611f8c85611f3e565b9450611f53565b94509492505050565b5f82611fab5760019050612066565b81611fb8575f9050612066565b8160018114611fce5760028114611fd857612007565b6001915050612066565b60ff841115611fea57611fe9611ede565b5b8360020a91508482111561200157612000611ede565b5b50612066565b5060208310610133831016604e8410600b841016171561203c5782820a90508381111561203757612036611ede565b5b612066565b6120498484846001611f4a565b925090508184048111156120605761205f611ede565b5b81810290505b9392505050565b5f61207782611b71565b915061208283611ceb565b92506120af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f9c565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6120ee82611b71565b91506120f983611b71565b925082612109576121086120b7565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61216e602583611ad1565b915061217982612114565b604082019050919050565b5f6020820190508181035f83015261219b81612162565b9050919050565b5f6121ac82611b71565b91506121b783611b71565b92508282026121c581611b71565b915082820484148315176121dc576121db611ede565b5b5092915050565b5f819050919050565b5f819050919050565b5f61220f61220a612205846121e3565b6121ec565b611b71565b9050919050565b61221f816121f5565b82525050565b5f60c0820190506122385f830189611d1f565b6122456020830188611b7a565b6122526040830187612216565b61225f6060830186612216565b61226c6080830185611d1f565b61227960a0830184611b7a565b979650505050505050565b5f8151905061229281611c00565b92915050565b5f805f606084860312156122af576122ae611ba2565b5b5f6122bc86828701612284565b93505060206122cd86828701612284565b92505060406122de86828701612284565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612342602683611ad1565b915061234d826122e8565b604082019050919050565b5f6020820190508181035f83015261236f81612336565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6123d0602483611ad1565b91506123db82612376565b604082019050919050565b5f6020820190508181035f8301526123fd816123c4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61245e602283611ad1565b915061246982612404565b604082019050919050565b5f6020820190508181035f83015261248b81612452565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6124c6602083611ad1565b91506124d182612492565b602082019050919050565b5f6020820190508181035f8301526124f3816124ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61252e601d83611ad1565b9150612539826124fa565b602082019050919050565b5f6020820190508181035f83015261255b81612522565b9050919050565b7f4d4158205458204c494d495400000000000000000000000000000000000000005f82015250565b5f612596600c83611ad1565b91506125a182612562565b602082019050919050565b5f6020820190508181035f8301526125c38161258a565b9050919050565b5f6125d482611b71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260657612605611ede565b5b600182019050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e5f82015250565b5f612645602083611ad1565b915061265082612611565b602082019050919050565b5f6020820190508181035f83015261267281612639565b9050919050565b5f61268382611b71565b915061268e83611b71565b92508282039050818111156126a6576126a5611ede565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061271481611bd6565b92915050565b5f6020828403121561272f5761272e611ba2565b5b5f61273c84828501612706565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277781611bc5565b82525050565b5f612788838361276e565b60208301905092915050565b5f602082019050919050565b5f6127aa82612745565b6127b4818561274f565b93506127bf8361275f565b805f5b838110156127ef5781516127d6888261277d565b97506127e183612794565b9250506001810190506127c2565b5085935050505092915050565b5f60a08201905061280f5f830188611b7a565b61281c6020830187612216565b818103604083015261282e81866127a0565b905061283d6060830185611d1f565b61284a6080830184611b7a565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6128ae602583611ad1565b91506128b982612854565b604082019050919050565b5f6020820190508181035f8301526128db816128a2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61293c602383611ad1565b9150612947826128e2565b604082019050919050565b5f6020820190508181035f83015261296981612930565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6129ca602683611ad1565b91506129d582612970565b604082019050919050565b5f6020820190508181035f8301526129f7816129be565b905091905056fea2646970667358221220f75ba65b7c8aad3c08a9c49578a5fcde5d8d1d054789ba5deb55e05bb1bdc00364736f6c63430008170033000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd7090000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa0810000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
Deployed Bytecode
0x6080604052600436106101db575f3560e01c8063a457c2d711610101578063c9567bf911610094578063db05e5cb11610063578063db05e5cb14610664578063dd62ed3e1461067a578063e8078d94146106b6578063f2fde38b146106cc576101e2565b8063c9567bf9146105fa578063d579d4ed14610610578063d7acde1f14610626578063da81a85a1461064e576101e2565b8063aca2cd6e116100d0578063aca2cd6e14610544578063ad5dff731461056c578063bc337182146105a8578063c8c8ebe4146105d0576101e2565b8063a457c2d71461047a578063a508de62146104b6578063a9059cbb146104e0578063a9e282b81461051c576101e2565b8063395093511161017957806370a082311161014857806370a08231146103d4578063715018a6146104105780638da5cb5b1461042657806395d89b4114610450576101e2565b8063395093511461031c57806349bd5a5e146103585780634b203e1b14610382578063667f6526146103ac576101e2565b806318160ddd116101b557806318160ddd14610276578063184619d3146102a057806323b872dd146102b6578063313ce567146102f2576101e2565b806306fdde03146101e6578063084cf61514610210578063095ea7b31461023a576101e2565b366101e257005b5f80fd5b3480156101f1575f80fd5b506101fa6106f4565b6040516102079190611b51565b60405180910390f35b34801561021b575f80fd5b50610224610784565b6040516102319190611b89565b60405180910390f35b348015610245575f80fd5b50610260600480360381019061025b9190611c2a565b61078a565b60405161026d9190611c82565b60405180910390f35b348015610281575f80fd5b5061028a6107ac565b6040516102979190611b89565b60405180910390f35b3480156102ab575f80fd5b506102b46107b5565b005b3480156102c1575f80fd5b506102dc60048036038101906102d79190611c9b565b6107d9565b6040516102e99190611c82565b60405180910390f35b3480156102fd575f80fd5b50610306610807565b6040516103139190611d06565b60405180910390f35b348015610327575f80fd5b50610342600480360381019061033d9190611c2a565b61080f565b60405161034f9190611c82565b60405180910390f35b348015610363575f80fd5b5061036c610845565b6040516103799190611d2e565b60405180910390f35b34801561038d575f80fd5b5061039661086a565b6040516103a39190611b89565b60405180910390f35b3480156103b7575f80fd5b506103d260048036038101906103cd9190611d47565b610891565b005b3480156103df575f80fd5b506103fa60048036038101906103f59190611d85565b6108c3565b6040516104079190611b89565b60405180910390f35b34801561041b575f80fd5b50610424610908565b005b348015610431575f80fd5b5061043a61091b565b6040516104479190611d2e565b60405180910390f35b34801561045b575f80fd5b50610464610943565b6040516104719190611b51565b60405180910390f35b348015610485575f80fd5b506104a0600480360381019061049b9190611c2a565b6109d3565b6040516104ad9190611c82565b60405180910390f35b3480156104c1575f80fd5b506104ca610a48565b6040516104d79190611b89565b60405180910390f35b3480156104eb575f80fd5b5061050660048036038101906105019190611c2a565b610a6f565b6040516105139190611c82565b60405180910390f35b348015610527575f80fd5b50610542600480360381019061053d9190611db0565b610a91565b005b34801561054f575f80fd5b5061056a60048036038101906105659190611e05565b610ac1565b005b348015610577575f80fd5b50610592600480360381019061058d9190611d85565b610b21565b60405161059f9190611c82565b60405180910390f35b3480156105b3575f80fd5b506105ce60048036038101906105c99190611db0565b610b3e565b005b3480156105db575f80fd5b506105e4610b6e565b6040516105f19190611b89565b60405180910390f35b348015610605575f80fd5b5061060e610b74565b005b34801561061b575f80fd5b50610624610b9f565b005b348015610631575f80fd5b5061064c60048036038101906106479190611db0565b610c05565b005b348015610659575f80fd5b50610662610c35565b005b34801561066f575f80fd5b50610678610c8c565b005b348015610685575f80fd5b506106a0600480360381019061069b9190611e43565b610ca4565b6040516106ad9190611b89565b60405180910390f35b3480156106c1575f80fd5b506106ca610d26565b005b3480156106d7575f80fd5b506106f260048036038101906106ed9190611d85565b610e1c565b005b60606003805461070390611eae565b80601f016020809104026020016040519081016040528092919081815260200182805461072f90611eae565b801561077a5780601f106107515761010080835404028352916020019161077a565b820191905f5260205f20905b81548152906001019060200180831161075d57829003601f168201915b5050505050905090565b600c5481565b5f80610794610e9e565b90506107a1818585610ea5565b600191505092915050565b5f600254905090565b6107bd611068565b5f600d60016101000a81548160ff021916908315150217905550565b5f806107e3610e9e565b90506107f08582856110e6565b6107fb858585611171565b60019150509392505050565b5f6012905090565b5f80610819610e9e565b905061083a81858561082b8589610ca4565b6108359190611f0b565b610ea5565b600191505092915050565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610873610807565b600a61087f919061206d565b60115461088c91906120e4565b905090565b610899611068565b6014821080156108a95750601481105b6108b1575f80fd5b80600781905550816006819055505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610910611068565b6109195f6114ed565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095290611eae565b80601f016020809104026020016040519081016040528092919081815260200182805461097e90611eae565b80156109c95780601f106109a0576101008083540402835291602001916109c9565b820191905f5260205f20905b8154815290600101906020018083116109ac57829003601f168201915b5050505050905090565b5f806109dd610e9e565b90505f6109ea8286610ca4565b905083811015610a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2690612184565b60405180910390fd5b610a3c8286868403610ea5565b60019250505092915050565b5f610a51610807565b600a610a5d919061206d565b601254610a6a91906120e4565b905090565b5f80610a79610e9e565b9050610a86818585611171565b600191505092915050565b610a99611068565b610aa1610807565b600a610aad919061206d565b81610ab891906121a2565b60118190555050565b610ac9611068565b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600a602052805f5260405f205f915054906101000a900460ff1681565b610b46611068565b610b4e610807565b600a610b5a919061206d565b81610b6591906121a2565b600b8190555050565b600b5481565b610b7c611068565b6001600d5f6101000a81548160ff02191690831515021790555043600e81905550565b7f0000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c02573d5f803e3d5ffd5b50565b610c0d611068565b610c15610807565b600a610c21919061206d565b81610c2c91906121a2565b60128190555050565b610c3d611068565b60145f9054906101000a900460ff1615610c6f575f60145f6101000a81548160ff021916908315150217905550610c8a565b600160145f6101000a81548160ff0219169083151502179055505b565b610c94611068565b610c9c6107ac565b600b81905550565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610d2e611068565b610d623060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610d5d306108c3565b610ea5565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610daa306108c3565b5f80610db461091b565b426040518863ffffffff1660e01b8152600401610dd696959493929190612225565b60606040518083038185885af1158015610df2573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610e179190612298565b505050565b610e24611068565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8990612358565b60405180910390fd5b610e9b816114ed565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906123e6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7890612474565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161105b9190611b89565b60405180910390a3505050565b611070610e9e565b73ffffffffffffffffffffffffffffffffffffffff1661108e61091b565b73ffffffffffffffffffffffffffffffffffffffff16146110e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110db906124dc565b60405180910390fd5b565b5f6110f18484610ca4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116b578181101561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612544565b60405180910390fd5b61116a8484848403610ea5565b5b50505050565b600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561120f5750600a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156114dc57600d5f9054906101000a900460ff1661122b575f80fd5b5f600d60019054906101000a900460ff16801561124a575043600e5414155b1561129957600c54821115611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b906125ac565b60405180910390fd5b6112df565b600b548211156112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d5906125ac565b60405180910390fd5b5b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113c65760075490505f611342306108c3565b905060115481118015611361575060145f9054906101000a900460ff16155b156113c057600f54431115611378575f6010819055505b600360105410156113bf5760105f815480929190611395906125ca565b919050555043600f819055506113be6113b96012546113b486856115b0565b6115b0565b6115c8565b5b5b5061148b565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361148a576006549050600e5443036114895760135f81548092919061143a906125ca565b91905055505f9050600f6013541115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f9061265b565b60405180910390fd5b5b5b5b5f6064828461149a91906121a2565b6114a491906120e4565b90505f81846114b39190612679565b90505f8211156114c9576114c8863084611851565b5b6114d4868683611851565b5050506114e8565b6114e7838383611851565b5b505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f8183116115be57826115c0565b815b905092915050565b600160145f6101000a81548160ff02191690831515021790555061160e3060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683610ea5565b5f600267ffffffffffffffff81111561162a576116296126ac565b5b6040519080825280602002602001820160405280156116585781602001602082028036833780820191505090505b50905030815f8151811061166f5761166e6126d9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611713573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611737919061271a565b8160018151811061174b5761174a6126d9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f847f000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd709426040518663ffffffff1660e01b81526004016118079594939291906127fc565b5f604051808303815f87803b15801561181e575f80fd5b505af1158015611830573d5f803e3d5ffd5b50505050505f60145f6101000a81548160ff02191690831515021790555050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906128c4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361192d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192490612952565b60405180910390fd5b611938838383611abd565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b2906129e0565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa49190611b89565b60405180910390a3611ab7848484611ac2565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015611afe578082015181840152602081019050611ae3565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611b2382611ac7565b611b2d8185611ad1565b9350611b3d818560208601611ae1565b611b4681611b09565b840191505092915050565b5f6020820190508181035f830152611b698184611b19565b905092915050565b5f819050919050565b611b8381611b71565b82525050565b5f602082019050611b9c5f830184611b7a565b92915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611bcf82611ba6565b9050919050565b611bdf81611bc5565b8114611be9575f80fd5b50565b5f81359050611bfa81611bd6565b92915050565b611c0981611b71565b8114611c13575f80fd5b50565b5f81359050611c2481611c00565b92915050565b5f8060408385031215611c4057611c3f611ba2565b5b5f611c4d85828601611bec565b9250506020611c5e85828601611c16565b9150509250929050565b5f8115159050919050565b611c7c81611c68565b82525050565b5f602082019050611c955f830184611c73565b92915050565b5f805f60608486031215611cb257611cb1611ba2565b5b5f611cbf86828701611bec565b9350506020611cd086828701611bec565b9250506040611ce186828701611c16565b9150509250925092565b5f60ff82169050919050565b611d0081611ceb565b82525050565b5f602082019050611d195f830184611cf7565b92915050565b611d2881611bc5565b82525050565b5f602082019050611d415f830184611d1f565b92915050565b5f8060408385031215611d5d57611d5c611ba2565b5b5f611d6a85828601611c16565b9250506020611d7b85828601611c16565b9150509250929050565b5f60208284031215611d9a57611d99611ba2565b5b5f611da784828501611bec565b91505092915050565b5f60208284031215611dc557611dc4611ba2565b5b5f611dd284828501611c16565b91505092915050565b611de481611c68565b8114611dee575f80fd5b50565b5f81359050611dff81611ddb565b92915050565b5f8060408385031215611e1b57611e1a611ba2565b5b5f611e2885828601611bec565b9250506020611e3985828601611df1565b9150509250929050565b5f8060408385031215611e5957611e58611ba2565b5b5f611e6685828601611bec565b9250506020611e7785828601611bec565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611ec557607f821691505b602082108103611ed857611ed7611e81565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611f1582611b71565b9150611f2083611b71565b9250828201905080821115611f3857611f37611ede565b5b92915050565b5f8160011c9050919050565b5f808291508390505b6001851115611f9357808604811115611f6f57611f6e611ede565b5b6001851615611f7e5780820291505b8081029050611f8c85611f3e565b9450611f53565b94509492505050565b5f82611fab5760019050612066565b81611fb8575f9050612066565b8160018114611fce5760028114611fd857612007565b6001915050612066565b60ff841115611fea57611fe9611ede565b5b8360020a91508482111561200157612000611ede565b5b50612066565b5060208310610133831016604e8410600b841016171561203c5782820a90508381111561203757612036611ede565b5b612066565b6120498484846001611f4a565b925090508184048111156120605761205f611ede565b5b81810290505b9392505050565b5f61207782611b71565b915061208283611ceb565b92506120af7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611f9c565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6120ee82611b71565b91506120f983611b71565b925082612109576121086120b7565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f61216e602583611ad1565b915061217982612114565b604082019050919050565b5f6020820190508181035f83015261219b81612162565b9050919050565b5f6121ac82611b71565b91506121b783611b71565b92508282026121c581611b71565b915082820484148315176121dc576121db611ede565b5b5092915050565b5f819050919050565b5f819050919050565b5f61220f61220a612205846121e3565b6121ec565b611b71565b9050919050565b61221f816121f5565b82525050565b5f60c0820190506122385f830189611d1f565b6122456020830188611b7a565b6122526040830187612216565b61225f6060830186612216565b61226c6080830185611d1f565b61227960a0830184611b7a565b979650505050505050565b5f8151905061229281611c00565b92915050565b5f805f606084860312156122af576122ae611ba2565b5b5f6122bc86828701612284565b93505060206122cd86828701612284565b92505060406122de86828701612284565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612342602683611ad1565b915061234d826122e8565b604082019050919050565b5f6020820190508181035f83015261236f81612336565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6123d0602483611ad1565b91506123db82612376565b604082019050919050565b5f6020820190508181035f8301526123fd816123c4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61245e602283611ad1565b915061246982612404565b604082019050919050565b5f6020820190508181035f83015261248b81612452565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6124c6602083611ad1565b91506124d182612492565b602082019050919050565b5f6020820190508181035f8301526124f3816124ba565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f61252e601d83611ad1565b9150612539826124fa565b602082019050919050565b5f6020820190508181035f83015261255b81612522565b9050919050565b7f4d4158205458204c494d495400000000000000000000000000000000000000005f82015250565b5f612596600c83611ad1565b91506125a182612562565b602082019050919050565b5f6020820190508181035f8301526125c38161258a565b9050919050565b5f6125d482611b71565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361260657612605611ede565b5b600182019050919050565b7f457863656564732062757973206f6e2074686520666972737420626c6f636b2e5f82015250565b5f612645602083611ad1565b915061265082612611565b602082019050919050565b5f6020820190508181035f83015261267281612639565b9050919050565b5f61268382611b71565b915061268e83611b71565b92508282039050818111156126a6576126a5611ede565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8151905061271481611bd6565b92915050565b5f6020828403121561272f5761272e611ba2565b5b5f61273c84828501612706565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61277781611bc5565b82525050565b5f612788838361276e565b60208301905092915050565b5f602082019050919050565b5f6127aa82612745565b6127b4818561274f565b93506127bf8361275f565b805f5b838110156127ef5781516127d6888261277d565b97506127e183612794565b9250506001810190506127c2565b5085935050505092915050565b5f60a08201905061280f5f830188611b7a565b61281c6020830187612216565b818103604083015261282e81866127a0565b905061283d6060830185611d1f565b61284a6080830184611b7a565b9695505050505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6128ae602583611ad1565b91506128b982612854565b604082019050919050565b5f6020820190508181035f8301526128db816128a2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61293c602383611ad1565b9150612947826128e2565b604082019050919050565b5f6020820190508181035f83015261296981612930565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6129ca602683611ad1565b91506129d582612970565b604082019050919050565b5f6020820190508181035f8301526129f7816129be565b905091905056fea2646970667358221220f75ba65b7c8aad3c08a9c49578a5fcde5d8d1d054789ba5deb55e05bb1bdc00364736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd7090000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa0810000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
-----Decoded View---------------
Arg [0] : _taxAddress (address): 0x981c13297c52054271ae6b83220A2f998fDbd709
Arg [1] : _marketingAddress (address): 0x8FfE34cdCa5B71b1D8BDcCE98e2B8035bCB9ba0c
Arg [2] : _rewards (address): 0x45C350DA447D4faC92c5daD48547474BD2d7b02A
Arg [3] : _private (address): 0xb154ad2031B7b4422E9bd47804Dce28Ebd3aA081
Arg [4] : _cex (address): 0x1A41AFf44fdfE697f7791e54dd72854F5AFe5f75
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000981c13297c52054271ae6b83220a2f998fdbd709
Arg [1] : 0000000000000000000000008ffe34cdca5b71b1d8bdcce98e2b8035bcb9ba0c
Arg [2] : 00000000000000000000000045c350da447d4fac92c5dad48547474bd2d7b02a
Arg [3] : 000000000000000000000000b154ad2031b7b4422e9bd47804dce28ebd3aa081
Arg [4] : 0000000000000000000000001a41aff44fdfe697f7791e54dd72854f5afe5f75
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.