ERC-20
Overview
Max Total Supply
21,000,000 CHAN
Holders
266
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,259.90833316768067559 CHANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Chanalog
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** Chancoin Your personal /biz/ analyst Organic engagement analyzer for cryptocurrencies on 4chan Website: https://chanalog.io Twitter: twitter.com/chanalog_ Instagram: chanalog.io Tiktok: chanalog.io **/ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; contract Chanalog is ERC20Capped, ERC20Burnable, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public teamWallet; uint256 public swapTokensAtAmount; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables // mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellTeamFee; uint256 public tokensForTeam; // When token was deployed uint256 public start; // start + time chosen by user uint256 public endPhase1; // start + endPhase1 + second time chosen by user uint256 public endPhase2; // If should apply custom fees bool public hasCustomPhases; // Phase 1 tax uint256 public phase1Tax; // Phase 2 tax uint256 public phase2Tax; // Minutes phase 1 is lasting uint256 public lengthPhase1; // Minutes phase 2 is lasting uint256 public lengthPhase2; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; bool public preMigrationPhase = true; mapping(address => bool) public preMigrationTransferrable; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Chanalog", "CHAN") ERC20Capped(21000000 * 10 ** decimals()) { _validateCustomPhases(10 minutes, 10 minutes, 70, 50); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D // --> mainnet ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyTeamFee = 4; uint256 _sellTeamFee = 4; uint256 totalSupply = 21_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyTeamFee = _buyTeamFee; buyTotalFees = buyTeamFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellTeamFee; teamWallet = owner(); // set as team wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); preMigrationTransferrable[owner()] = true; ERC20Capped._mint(msg.sender, 21000000 * 10 ** decimals()); } receive() external payable {} function _mint(address to, uint256 amount) internal override(ERC20, ERC20Capped) { require(totalSupply() + amount <= cap(), "Max number of tokens minted"); super._mint(to, amount); } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; preMigrationPhase = false; } function isTradingEnabled() external view returns (bool) { if (tradingActive && swapEnabled && !preMigrationPhase) { return true; } else { return false; } } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _teamFee ) external onlyOwner { buyTeamFee = _teamFee; buyTotalFees = buyTeamFee; require(buyTotalFees <= 5, "Buy fees must be <= 5."); } function updateSellFees( uint256 _teamFee ) external onlyOwner { sellTeamFee = _teamFee; sellTotalFees = sellTeamFee; require(sellTotalFees <= 5, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _validateCustomPhases(uint256 _lengthPhase1, uint256 _lengthPhase2, uint256 _phase1Tax, uint256 _phase2Tax) private { uint256 rightNow = block.timestamp; require(_lengthPhase1 <= 20 minutes && _lengthPhase2 <= 20 minutes, "phases too long"); start = rightNow; // If UNIX time of endPhase 1 is bigger than current time it means that user has set the phased taxes if ((_lengthPhase1 + rightNow) > rightNow) { // Checks if its within threshold require(_phase1Tax > 0 && _phase1Tax <= 70, "threshold1"); require(_phase2Tax > 0 && _phase2Tax <= 50, "threshold2"); endPhase1 = rightNow + _lengthPhase1; endPhase2 = rightNow + _lengthPhase1 + _lengthPhase2; phase1Tax = _phase1Tax; phase2Tax = _phase2Tax; hasCustomPhases = true; lengthPhase1 = _lengthPhase1; lengthPhase2 = _lengthPhase2; } else { hasCustomPhases = false; } } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (preMigrationPhase) { require(preMigrationTransferrable[from], "Not authorized to transfer pre-migration."); } if (amount == 0) { super._transfer(from, to, 0); return; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; uint256 sellFee_; uint256 buyFee_; bool customDistr = true; if (hasCustomPhases && block.timestamp < (endPhase2 - lengthPhase2)) { sellFee_ = phase1Tax; buyFee_ = sellFee_; } else if (hasCustomPhases && block.timestamp < endPhase2) { sellFee_ = phase2Tax; buyFee_ = phase2Tax; } else { sellFee_ = sellTotalFees; buyFee_ = buyTotalFees; customDistr = false; } if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellFee_ > 0) { fees = amount.mul(sellFee_).div(100); tokensForTeam += (fees * sellTeamFee) / sellFee_; } // on buy else if (automatedMarketMakerPairs[from] && buyFee_ > 0) { fees = amount.mul(buyFee_).div(100); tokensForTeam += (fees * buyTeamFee) / buyFee_; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap); tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); } function withdrawStuckChancoin() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawStuckEth(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } function setPreMigrationTransferable(address _addr, bool isAuthorized) public onlyOwner { preMigrationTransferrable[_addr] = isAuthorized; excludeFromFees(_addr, isAuthorized); } }
// 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 (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { uint256 private immutable _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor(uint256 cap_) { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_mint}. */ function _mint(address account, uint256 amount) internal virtual override { require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded"); super._mint(account, amount); } }
// 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); }
// 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 (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasCustomPhases","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lengthPhase1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lengthPhase2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","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":"phase1Tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase2Tax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preMigrationPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMigrationTransferrable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"bool","name":"isAuthorized","type":"bool"}],"name":"setPreMigrationTransferable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckChancoin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040526001600860006101000a81548160ff0219169083151502179055506000600860016101000a81548160ff0219169083151502179055506000600860026101000a81548160ff0219169083151502179055506001601860006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506200008e6200056b60201b60201c565b600a6200009c919062000dbb565b6301406f40620000ad919062000e0c565b6040518060400160405280600881526020017f4368616e616c6f670000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4348414e0000000000000000000000000000000000000000000000000000000081525081600390816200012a9190620010c7565b5080600490816200013c9190620010c7565b5050506000811162000185576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017c906200120f565b60405180910390fd5b806080818152505050620001ae620001a26200057460201b60201c565b6200057c60201b60201c565b620001c661025880604660326200064260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200025f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028591906200129b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200031391906200129b565b6040518363ffffffff1660e01b815260040162000332929190620012de565b6020604051808303816000875af115801562000352573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037891906200129b565b73ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1681525050620003c060c0516001620007f860201b60201c565b60006004905060006004905060006a115eec47f6cf7e350000009050612710600582620003ee919062000e0c565b620003fa91906200133a565b60078190555082600a81905550600a5460098190555081600c81905550600c54600b81905550620004306200089960201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000492620004846200089960201b60201c565b6001620008c360201b60201c565b620004a5306001620008c360201b60201c565b620004ba61dead6001620008c360201b60201c565b600160196000620004d06200089960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200056133620005366200056b60201b60201c565b600a62000544919062000dbb565b6301406f4062000555919062000e0c565b6200097e60201b60201c565b50505050620016c1565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60004290506104b085111580156200065c57506104b08411155b6200069e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200069590620013c2565b60405180910390fd5b80600e81905550808186620006b49190620013e4565b1115620007d557600083118015620006cd575060468311155b6200070f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000706906200146f565b60405180910390fd5b60008211801562000721575060328211155b62000763576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075a90620014e1565b60405180910390fd5b8481620007719190620013e4565b600f81905550838582620007869190620013e4565b620007929190620013e4565b60108190555082601281905550816013819055506001601160006101000a81548160ff0219169083151502179055508460148190555083601581905550620007f1565b6000601160006101000a81548160ff0219169083151502179055505b5050505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008d362000a0560201b60201c565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000972919062001520565b60405180910390a25050565b6200098e62000a9660201b60201c565b816200099f62000aa060201b60201c565b620009ab9190620013e4565b1115620009ef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e6906200158d565b60405180910390fd5b62000a01828262000aaa60201b60201c565b5050565b62000a156200057460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a3b6200089960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a8b90620015ff565b60405180910390fd5b565b6000608051905090565b6000600254905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b1c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b139062001671565b60405180910390fd5b62000b306000838362000c1760201b60201c565b806002600082825462000b449190620013e4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bf79190620016a4565b60405180910390a362000c136000838362000c1c60201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000caf5780860481111562000c875762000c8662000c21565b5b600185161562000c975780820291505b808102905062000ca78562000c50565b945062000c67565b94509492505050565b60008262000cca576001905062000d9d565b8162000cda576000905062000d9d565b816001811462000cf3576002811462000cfe5762000d34565b600191505062000d9d565b60ff84111562000d135762000d1262000c21565b5b8360020a91508482111562000d2d5762000d2c62000c21565b5b5062000d9d565b5060208310610133831016604e8410600b841016171562000d6e5782820a90508381111562000d685762000d6762000c21565b5b62000d9d565b62000d7d848484600162000c5d565b9250905081840481111562000d975762000d9662000c21565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b600062000dc88262000da4565b915062000dd58362000dae565b925062000e047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cb8565b905092915050565b600062000e198262000da4565b915062000e268362000da4565b925082820262000e368162000da4565b9150828204841483151762000e505762000e4f62000c21565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ed957607f821691505b60208210810362000eef5762000eee62000e91565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000f597fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000f1a565b62000f65868362000f1a565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000fa862000fa262000f9c8462000da4565b62000f7d565b62000da4565b9050919050565b6000819050919050565b62000fc48362000f87565b62000fdc62000fd38262000faf565b84845462000f27565b825550505050565b600090565b62000ff362000fe4565b6200100081848462000fb9565b505050565b5b8181101562001028576200101c60008262000fe9565b60018101905062001006565b5050565b601f8211156200107757620010418162000ef5565b6200104c8462000f0a565b810160208510156200105c578190505b620010746200106b8562000f0a565b83018262001005565b50505b505050565b600082821c905092915050565b60006200109c600019846008026200107c565b1980831691505092915050565b6000620010b7838362001089565b9150826002028217905092915050565b620010d28262000e57565b67ffffffffffffffff811115620010ee57620010ed62000e62565b5b620010fa825462000ec0565b620011078282856200102c565b600060209050601f8311600181146200113f57600084156200112a578287015190505b620011368582620010a9565b865550620011a6565b601f1984166200114f8662000ef5565b60005b82811015620011795784890151825560018201915060208501945060208101905062001152565b8683101562001199578489015162001195601f89168262001089565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332304361707065643a2063617020697320300000000000000000000000600082015250565b6000620011f7601583620011ae565b91506200120482620011bf565b602082019050919050565b600060208201905081810360008301526200122a81620011e8565b9050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620012638262001236565b9050919050565b620012758162001256565b81146200128157600080fd5b50565b60008151905062001295816200126a565b92915050565b600060208284031215620012b457620012b362001231565b5b6000620012c48482850162001284565b91505092915050565b620012d88162001256565b82525050565b6000604082019050620012f56000830185620012cd565b620013046020830184620012cd565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620013478262000da4565b9150620013548362000da4565b9250826200136757620013666200130b565b5b828204905092915050565b7f70686173657320746f6f206c6f6e670000000000000000000000000000000000600082015250565b6000620013aa600f83620011ae565b9150620013b78262001372565b602082019050919050565b60006020820190508181036000830152620013dd816200139b565b9050919050565b6000620013f18262000da4565b9150620013fe8362000da4565b925082820190508082111562001419576200141862000c21565b5b92915050565b7f7468726573686f6c643100000000000000000000000000000000000000000000600082015250565b600062001457600a83620011ae565b915062001464826200141f565b602082019050919050565b600060208201905081810360008301526200148a8162001448565b9050919050565b7f7468726573686f6c643200000000000000000000000000000000000000000000600082015250565b6000620014c9600a83620011ae565b9150620014d68262001491565b602082019050919050565b60006020820190508181036000830152620014fc81620014ba565b9050919050565b60008115159050919050565b6200151a8162001503565b82525050565b60006020820190506200153760008301846200150f565b92915050565b7f45524332304361707065643a2063617020657863656564656400000000000000600082015250565b600062001575601983620011ae565b915062001582826200153d565b602082019050919050565b60006020820190508181036000830152620015a88162001566565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620015e7602083620011ae565b9150620015f482620015af565b602082019050919050565b600060208201905081810360008301526200161a81620015d8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001659601f83620011ae565b9150620016668262001621565b602082019050919050565b600060208201905081810360008301526200168c816200164a565b9050919050565b6200169e8162000da4565b82525050565b6000602082019050620016bb600083018462001693565b92915050565b60805160a05160c0516140d86200170d60003960008181610f5d015261153b015260008181610e7801528181612c9d01528181612d7e0152612da501526000610ee601526140d86000f3fe60806040526004361061036f5760003560e01c80637ca8448a116101c6578063bbc0c742116100f7578063d85ba06311610095578063eba4c3331161006f578063eba4c33314610cad578063f2fde38b14610cd6578063f493c18714610cff578063fde83a3414610d2a57610376565b8063d85ba06314610c1a578063dd62ed3e14610c45578063e2f4560514610c8257610376565b8063be9a6555116100d1578063be9a655514610b5e578063c024666814610b89578063d257b34f14610bb2578063d729715f14610bef57610376565b8063bbc0c74214610adf578063bbe7efa314610b0a578063bc205ad314610b3557610376565b80639c2e4ac611610164578063a9059cbb1161013e578063a9059cbb14610a11578063aa0e438814610a4e578063b246954114610a77578063b62496f514610aa257610376565b80639c2e4ac61461097e578063a2e062ec146109a9578063a457c2d7146109d457610376565b80638da5cb5b116101a05780638da5cb5b146108d6578063924de9b71461090157806395d89b411461092a5780639a7a23d61461095557610376565b80637ca8448a1461086d5780637cb332bb146108965780638a8c523c146108bf57610376565b80634a62bb65116102a057806370a082311161023e578063751039fc11610218578063751039fc146107c3578063757dd315146107ee57806379cc6790146108195780637b2829b81461084257610376565b806370a0823114610746578063715018a61461078357806371fc46881461079a57610376565b8063599270441161027a57806359927044146106ae5780635a17339f146106d95780636a486a8e146106f05780636ddd17131461071b57610376565b80634a62bb65146106095780634e29e523146106345780634fbee1931461067157610376565b806327c8f8351161030d57806339509351116102e7578063395093511461054d5780633ccef2261461058a57806342966c68146105b557806349bd5a5e146105de57610376565b806327c8f835146104cc578063313ce567146104f7578063355274ea1461052257610376565b80630e922ca7116103495780630e922ca71461040e5780631694505e1461043957806318160ddd1461046457806323b872dd1461048f57610376565b8063064a59d01461037b57806306fdde03146103a6578063095ea7b3146103d157610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d55565b60405161039d9190612e6c565b60405180910390f35b3480156103b257600080fd5b506103bb610dae565b6040516103c89190612f17565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612fd2565b610e40565b6040516104059190612e6c565b60405180910390f35b34801561041a57600080fd5b50610423610e63565b6040516104309190612e6c565b60405180910390f35b34801561044557600080fd5b5061044e610e76565b60405161045b9190613071565b60405180910390f35b34801561047057600080fd5b50610479610e9a565b604051610486919061309b565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906130b6565b610ea4565b6040516104c39190612e6c565b60405180910390f35b3480156104d857600080fd5b506104e1610ed3565b6040516104ee9190613118565b60405180910390f35b34801561050357600080fd5b5061050c610ed9565b604051610519919061314f565b60405180910390f35b34801561052e57600080fd5b50610537610ee2565b604051610544919061309b565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612fd2565b610f0a565b6040516105819190612e6c565b60405180910390f35b34801561059657600080fd5b5061059f610f41565b6040516105ac919061309b565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061316a565b610f47565b005b3480156105ea57600080fd5b506105f3610f5b565b6040516106009190613118565b60405180910390f35b34801561061557600080fd5b5061061e610f7f565b60405161062b9190612e6c565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613197565b610f92565b6040516106689190612e6c565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613197565b610fb2565b6040516106a59190612e6c565b60405180910390f35b3480156106ba57600080fd5b506106c3611008565b6040516106d09190613118565b60405180910390f35b3480156106e557600080fd5b506106ee61102e565b005b3480156106fc57600080fd5b5061070561117d565b604051610712919061309b565b60405180910390f35b34801561072757600080fd5b50610730611183565b60405161073d9190612e6c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613197565b611196565b60405161077a919061309b565b60405180910390f35b34801561078f57600080fd5b506107986111de565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061316a565b6111f2565b005b3480156107cf57600080fd5b506107d8611253565b6040516107e59190612e6c565b60405180910390f35b3480156107fa57600080fd5b5061080361127f565b604051610810919061309b565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612fd2565b611285565b005b34801561084e57600080fd5b506108576112a5565b604051610864919061309b565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613197565b6112ab565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190613197565b61132d565b005b3480156108cb57600080fd5b506108d46113f5565b005b3480156108e257600080fd5b506108eb611450565b6040516108f89190613118565b60405180910390f35b34801561090d57600080fd5b50610928600480360381019061092391906131f0565b61147a565b005b34801561093657600080fd5b5061093f61149f565b60405161094c9190612f17565b60405180910390f35b34801561096157600080fd5b5061097c6004803603810190610977919061321d565b611531565b005b34801561098a57600080fd5b506109936115d5565b6040516109a0919061309b565b60405180910390f35b3480156109b557600080fd5b506109be6115db565b6040516109cb9190612e6c565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f69190612fd2565b6115ee565b604051610a089190612e6c565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190612fd2565b611665565b604051610a459190612e6c565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a70919061321d565b611688565b005b348015610a8357600080fd5b50610a8c6116f5565b604051610a99919061309b565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613197565b6116fb565b604051610ad69190612e6c565b60405180910390f35b348015610aeb57600080fd5b50610af461171b565b604051610b019190612e6c565b60405180910390f35b348015610b1657600080fd5b50610b1f61172e565b604051610b2c919061309b565b60405180910390f35b348015610b4157600080fd5b50610b5c6004803603810190610b57919061325d565b611734565b005b348015610b6a57600080fd5b50610b736118ad565b604051610b80919061309b565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab919061321d565b6118b3565b005b348015610bbe57600080fd5b50610bd96004803603810190610bd4919061316a565b611964565b604051610be69190612e6c565b60405180910390f35b348015610bfb57600080fd5b50610c04611a45565b604051610c11919061309b565b60405180910390f35b348015610c2657600080fd5b50610c2f611a4b565b604051610c3c919061309b565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c67919061325d565b611a51565b604051610c79919061309b565b60405180910390f35b348015610c8e57600080fd5b50610c97611ad8565b604051610ca4919061309b565b60405180910390f35b348015610cb957600080fd5b50610cd46004803603810190610ccf919061316a565b611ade565b005b348015610ce257600080fd5b50610cfd6004803603810190610cf89190613197565b611b3f565b005b348015610d0b57600080fd5b50610d14611bc2565b604051610d21919061309b565b60405180910390f35b348015610d3657600080fd5b50610d3f611bc8565b604051610d4c919061309b565b60405180910390f35b6000600860019054906101000a900460ff168015610d7f5750600860029054906101000a900460ff165b8015610d985750601860009054906101000a900460ff16155b15610da65760019050610dab565b600090505b90565b606060038054610dbd906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610de9906132cc565b8015610e365780601f10610e0b57610100808354040283529160200191610e36565b820191906000526020600020905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b600080610e4b611bce565b9050610e58818585611bd6565b600191505092915050565b601860009054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610eaf611bce565b9050610ebc858285611d9f565b610ec7858585611e2b565b60019150509392505050565b61dead81565b60006012905090565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b600080610f15611bce565b9050610f36818585610f278589611a51565b610f31919061332c565b611bd6565b600191505092915050565b60155481565b610f58610f52611bce565b82612452565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b600860009054906101000a900460ff1681565b60196020528060005260406000206000915054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61103661261f565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110719190613118565b602060405180830381865afa15801561108e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b29190613375565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110ef9291906133a2565b6020604051808303816000875af115801561110e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113291906133e0565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611179573d6000803e3d6000fd5b5050565b600b5481565b600860029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e661261f565b6111f0600061269d565b565b6111fa61261f565b80600a81905550600a5460098190555060056009541115611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613459565b60405180910390fd5b50565b600061125d61261f565b6000600860006101000a81548160ff0219169083151502179055506001905090565b60135481565b61129782611291611bce565b83611d9f565b6112a18282612452565b5050565b60145481565b6112b361261f565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516112d9906134aa565b60006040518083038185875af1925050503d8060008114611316576040519150601f19603f3d011682016040523d82523d6000602084013e61131b565b606091505b505090508061132957600080fd5b5050565b61133561261f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113fd61261f565b6001600860016101000a81548160ff0219169083151502179055506001600860026101000a81548160ff0219169083151502179055506000601860006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61148261261f565b80600860026101000a81548160ff02191690831515021790555050565b6060600480546114ae906132cc565b80601f01602080910402602001604051908101604052809291908181526020018280546114da906132cc565b80156115275780601f106114fc57610100808354040283529160200191611527565b820191906000526020600020905b81548152906001019060200180831161150a57829003601f168201915b5050505050905090565b61153961261f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613531565b60405180910390fd5b6115d18282612763565b5050565b600a5481565b601160009054906101000a900460ff1681565b6000806115f9611bce565b905060006116078286611a51565b90508381101561164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906135c3565b60405180910390fd5b6116598286868403611bd6565b60019250505092915050565b600080611670611bce565b905061167d818585611e2b565b600191505092915050565b61169061261f565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116f182826118b3565b5050565b60105481565b60176020528060005260406000206000915054906101000a900460ff1681565b600860019054906101000a900460ff1681565b600f5481565b61173c61261f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061362f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117e69190613118565b602060405180830381865afa158015611803573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118279190613375565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016118649291906133a2565b6020604051808303816000875af1158015611883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a791906133e0565b50505050565b600e5481565b6118bb61261f565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119589190612e6c565b60405180910390a25050565b600061196e61261f565b620186a0600161197c610e9a565b611986919061364f565b61199091906136c0565b8210156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613763565b60405180910390fd5b6103e860056119df610e9a565b6119e9919061364f565b6119f391906136c0565b821115611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906137f5565b60405180910390fd5b8160078190555060019050919050565b600c5481565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b611ae661261f565b80600c81905550600c54600b819055506005600b541115611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613861565b60405180910390fd5b50565b611b4761261f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906138f3565b60405180910390fd5b611bbf8161269d565b50565b60125481565b600d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613985565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613a17565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d92919061309b565b60405180910390a3505050565b6000611dab8484611a51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e255781811015611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613a83565b60405180910390fd5b611e248484848403611bd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090613ba7565b60405180910390fd5b601860009054906101000a900460ff1615611fab57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613c39565b60405180910390fd5b5b60008103611fc457611fbf83836000612804565b61244d565b6000611fcf30611196565b905060006007548210159050600080600060019050601160009054906101000a900460ff16801561200e575060155460105461200b9190613c59565b42105b15612020576012549250829150612061565b601160009054906101000a900460ff16801561203d575060105442105b156120515760135492506013549150612060565b600b5492506009549150600090505b5b83801561207a5750600860029054906101000a900460ff165b80156120935750600560149054906101000a900460ff16155b80156120e95750601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561213f5750601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121955750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121d9576001600560146101000a81548160ff0219169083151502179055506121bd612a7a565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061228f5750601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561229957600090505b6000811561243a57601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122fa5750600085115b1561235d576123256064612317878b612bc890919063ffffffff16565b612bde90919063ffffffff16565b905084600c5482612336919061364f565b61234091906136c0565b600d6000828254612351919061332c565b92505081905550612416565b601760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123b65750600084115b15612415576123e160646123d3868b612bc890919063ffffffff16565b612bde90919063ffffffff16565b905083600a54826123f2919061364f565b6123fc91906136c0565b600d600082825461240d919061332c565b925050819055505b5b600081111561242b5761242a8a3083612804565b5b80886124379190613c59565b97505b6124458a8a8a612804565b505050505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613cff565b60405180910390fd5b6124cd82600083612bf4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613d91565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612606919061309b565b60405180910390a361261a83600084612bf9565b505050565b612627611bce565b73ffffffffffffffffffffffffffffffffffffffff16612645611450565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290613dfd565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d990613ba7565b60405180910390fd5b6128ed838383612bf4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613e8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a61919061309b565b60405180910390a3612a74848484612bf9565b50505050565b6000612a8530611196565b90506000600d549050600080831480612a9e5750600082145b15612aab57505050612bc6565b6014600754612aba919061364f565b831115612ad3576014600754612ad0919061364f565b92505b60008390506000479050612ae682612bfe565b6000612afb8247612e3b90919063ffffffff16565b90506000612b2686612b18600d5485612bc890919063ffffffff16565b612bde90919063ffffffff16565b90506000600d81905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b76906134aa565b60006040518083038185875af1925050503d8060008114612bb3576040519150601f19603f3d011682016040523d82523d6000602084013e612bb8565b606091505b505080955050505050505050505b565b60008183612bd6919061364f565b905092915050565b60008183612bec91906136c0565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c1b57612c1a613eaf565b5b604051908082528060200260200182016040528015612c495781602001602082028036833780820191505090505b5090503081600081518110612c6157612c60613ede565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2a9190613f22565b81600181518110612d3e57612d3d613ede565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612da3307f000000000000000000000000000000000000000000000000000000000000000084611bd6565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e05959493929190614048565b600060405180830381600087803b158015612e1f57600080fd5b505af1158015612e33573d6000803e3d6000fd5b505050505050565b60008183612e499190613c59565b905092915050565b60008115159050919050565b612e6681612e51565b82525050565b6000602082019050612e816000830184612e5d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec1578082015181840152602081019050612ea6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee982612e87565b612ef38185612e92565b9350612f03818560208601612ea3565b612f0c81612ecd565b840191505092915050565b60006020820190508181036000830152612f318184612ede565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6982612f3e565b9050919050565b612f7981612f5e565b8114612f8457600080fd5b50565b600081359050612f9681612f70565b92915050565b6000819050919050565b612faf81612f9c565b8114612fba57600080fd5b50565b600081359050612fcc81612fa6565b92915050565b60008060408385031215612fe957612fe8612f39565b5b6000612ff785828601612f87565b925050602061300885828601612fbd565b9150509250929050565b6000819050919050565b600061303761303261302d84612f3e565b613012565b612f3e565b9050919050565b60006130498261301c565b9050919050565b600061305b8261303e565b9050919050565b61306b81613050565b82525050565b60006020820190506130866000830184613062565b92915050565b61309581612f9c565b82525050565b60006020820190506130b0600083018461308c565b92915050565b6000806000606084860312156130cf576130ce612f39565b5b60006130dd86828701612f87565b93505060206130ee86828701612f87565b92505060406130ff86828701612fbd565b9150509250925092565b61311281612f5e565b82525050565b600060208201905061312d6000830184613109565b92915050565b600060ff82169050919050565b61314981613133565b82525050565b60006020820190506131646000830184613140565b92915050565b6000602082840312156131805761317f612f39565b5b600061318e84828501612fbd565b91505092915050565b6000602082840312156131ad576131ac612f39565b5b60006131bb84828501612f87565b91505092915050565b6131cd81612e51565b81146131d857600080fd5b50565b6000813590506131ea816131c4565b92915050565b60006020828403121561320657613205612f39565b5b6000613214848285016131db565b91505092915050565b6000806040838503121561323457613233612f39565b5b600061324285828601612f87565b9250506020613253858286016131db565b9150509250929050565b6000806040838503121561327457613273612f39565b5b600061328285828601612f87565b925050602061329385828601612f87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e457607f821691505b6020821081036132f7576132f661329d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061333782612f9c565b915061334283612f9c565b925082820190508082111561335a576133596132fd565b5b92915050565b60008151905061336f81612fa6565b92915050565b60006020828403121561338b5761338a612f39565b5b600061339984828501613360565b91505092915050565b60006040820190506133b76000830185613109565b6133c4602083018461308c565b9392505050565b6000815190506133da816131c4565b92915050565b6000602082840312156133f6576133f5612f39565b5b6000613404848285016133cb565b91505092915050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b6000613443601683612e92565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b600081905092915050565b50565b6000613494600083613479565b915061349f82613484565b600082019050919050565b60006134b582613487565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061351b603983612e92565b9150613526826134bf565b604082019050919050565b6000602082019050818103600083015261354a8161350e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135ad602583612e92565b91506135b882613551565b604082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000613619601a83612e92565b9150613624826135e3565b602082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b600061365a82612f9c565b915061366583612f9c565b925082820261367381612f9c565b9150828204841483151761368a576136896132fd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136cb82612f9c565b91506136d683612f9c565b9250826136e6576136e5613691565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061374d603583612e92565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006137df603483612e92565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b600061384b601783612e92565b915061385682613815565b602082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138dd602683612e92565b91506138e882613881565b604082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061396f602483612e92565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a01602283612e92565b9150613a0c826139a5565b604082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a6d601d83612e92565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aff602583612e92565b9150613b0a82613aa3565b604082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b91602383612e92565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000613c23602983612e92565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b6000613c6482612f9c565b9150613c6f83612f9c565b9250828203905081811115613c8757613c866132fd565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce9602183612e92565b9150613cf482613c8d565b604082019050919050565b60006020820190508181036000830152613d1881613cdc565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d7b602283612e92565b9150613d8682613d1f565b604082019050919050565b60006020820190508181036000830152613daa81613d6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613de7602083612e92565b9150613df282613db1565b602082019050919050565b60006020820190508181036000830152613e1681613dda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613e79602683612e92565b9150613e8482613e1d565b604082019050919050565b60006020820190508181036000830152613ea881613e6c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613f1c81612f70565b92915050565b600060208284031215613f3857613f37612f39565b5b6000613f4684828501613f0d565b91505092915050565b6000819050919050565b6000613f74613f6f613f6a84613f4f565b613012565b612f9c565b9050919050565b613f8481613f59565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fbf81612f5e565b82525050565b6000613fd18383613fb6565b60208301905092915050565b6000602082019050919050565b6000613ff582613f8a565b613fff8185613f95565b935061400a83613fa6565b8060005b8381101561403b5781516140228882613fc5565b975061402d83613fdd565b92505060018101905061400e565b5085935050505092915050565b600060a08201905061405d600083018861308c565b61406a6020830187613f7b565b818103604083015261407c8186613fea565b905061408b6060830185613109565b614098608083018461308c565b969550505050505056fea26469706673582212207cfc49c4891d46ef06a82de77509c694c8d85cfcd89c77b5425201823baf0cfe64736f6c63430008140033
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80637ca8448a116101c6578063bbc0c742116100f7578063d85ba06311610095578063eba4c3331161006f578063eba4c33314610cad578063f2fde38b14610cd6578063f493c18714610cff578063fde83a3414610d2a57610376565b8063d85ba06314610c1a578063dd62ed3e14610c45578063e2f4560514610c8257610376565b8063be9a6555116100d1578063be9a655514610b5e578063c024666814610b89578063d257b34f14610bb2578063d729715f14610bef57610376565b8063bbc0c74214610adf578063bbe7efa314610b0a578063bc205ad314610b3557610376565b80639c2e4ac611610164578063a9059cbb1161013e578063a9059cbb14610a11578063aa0e438814610a4e578063b246954114610a77578063b62496f514610aa257610376565b80639c2e4ac61461097e578063a2e062ec146109a9578063a457c2d7146109d457610376565b80638da5cb5b116101a05780638da5cb5b146108d6578063924de9b71461090157806395d89b411461092a5780639a7a23d61461095557610376565b80637ca8448a1461086d5780637cb332bb146108965780638a8c523c146108bf57610376565b80634a62bb65116102a057806370a082311161023e578063751039fc11610218578063751039fc146107c3578063757dd315146107ee57806379cc6790146108195780637b2829b81461084257610376565b806370a0823114610746578063715018a61461078357806371fc46881461079a57610376565b8063599270441161027a57806359927044146106ae5780635a17339f146106d95780636a486a8e146106f05780636ddd17131461071b57610376565b80634a62bb65146106095780634e29e523146106345780634fbee1931461067157610376565b806327c8f8351161030d57806339509351116102e7578063395093511461054d5780633ccef2261461058a57806342966c68146105b557806349bd5a5e146105de57610376565b806327c8f835146104cc578063313ce567146104f7578063355274ea1461052257610376565b80630e922ca7116103495780630e922ca71461040e5780631694505e1461043957806318160ddd1461046457806323b872dd1461048f57610376565b8063064a59d01461037b57806306fdde03146103a6578063095ea7b3146103d157610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d55565b60405161039d9190612e6c565b60405180910390f35b3480156103b257600080fd5b506103bb610dae565b6040516103c89190612f17565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612fd2565b610e40565b6040516104059190612e6c565b60405180910390f35b34801561041a57600080fd5b50610423610e63565b6040516104309190612e6c565b60405180910390f35b34801561044557600080fd5b5061044e610e76565b60405161045b9190613071565b60405180910390f35b34801561047057600080fd5b50610479610e9a565b604051610486919061309b565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b191906130b6565b610ea4565b6040516104c39190612e6c565b60405180910390f35b3480156104d857600080fd5b506104e1610ed3565b6040516104ee9190613118565b60405180910390f35b34801561050357600080fd5b5061050c610ed9565b604051610519919061314f565b60405180910390f35b34801561052e57600080fd5b50610537610ee2565b604051610544919061309b565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f9190612fd2565b610f0a565b6040516105819190612e6c565b60405180910390f35b34801561059657600080fd5b5061059f610f41565b6040516105ac919061309b565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d7919061316a565b610f47565b005b3480156105ea57600080fd5b506105f3610f5b565b6040516106009190613118565b60405180910390f35b34801561061557600080fd5b5061061e610f7f565b60405161062b9190612e6c565b60405180910390f35b34801561064057600080fd5b5061065b60048036038101906106569190613197565b610f92565b6040516106689190612e6c565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613197565b610fb2565b6040516106a59190612e6c565b60405180910390f35b3480156106ba57600080fd5b506106c3611008565b6040516106d09190613118565b60405180910390f35b3480156106e557600080fd5b506106ee61102e565b005b3480156106fc57600080fd5b5061070561117d565b604051610712919061309b565b60405180910390f35b34801561072757600080fd5b50610730611183565b60405161073d9190612e6c565b60405180910390f35b34801561075257600080fd5b5061076d60048036038101906107689190613197565b611196565b60405161077a919061309b565b60405180910390f35b34801561078f57600080fd5b506107986111de565b005b3480156107a657600080fd5b506107c160048036038101906107bc919061316a565b6111f2565b005b3480156107cf57600080fd5b506107d8611253565b6040516107e59190612e6c565b60405180910390f35b3480156107fa57600080fd5b5061080361127f565b604051610810919061309b565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612fd2565b611285565b005b34801561084e57600080fd5b506108576112a5565b604051610864919061309b565b60405180910390f35b34801561087957600080fd5b50610894600480360381019061088f9190613197565b6112ab565b005b3480156108a257600080fd5b506108bd60048036038101906108b89190613197565b61132d565b005b3480156108cb57600080fd5b506108d46113f5565b005b3480156108e257600080fd5b506108eb611450565b6040516108f89190613118565b60405180910390f35b34801561090d57600080fd5b50610928600480360381019061092391906131f0565b61147a565b005b34801561093657600080fd5b5061093f61149f565b60405161094c9190612f17565b60405180910390f35b34801561096157600080fd5b5061097c6004803603810190610977919061321d565b611531565b005b34801561098a57600080fd5b506109936115d5565b6040516109a0919061309b565b60405180910390f35b3480156109b557600080fd5b506109be6115db565b6040516109cb9190612e6c565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f69190612fd2565b6115ee565b604051610a089190612e6c565b60405180910390f35b348015610a1d57600080fd5b50610a386004803603810190610a339190612fd2565b611665565b604051610a459190612e6c565b60405180910390f35b348015610a5a57600080fd5b50610a756004803603810190610a70919061321d565b611688565b005b348015610a8357600080fd5b50610a8c6116f5565b604051610a99919061309b565b60405180910390f35b348015610aae57600080fd5b50610ac96004803603810190610ac49190613197565b6116fb565b604051610ad69190612e6c565b60405180910390f35b348015610aeb57600080fd5b50610af461171b565b604051610b019190612e6c565b60405180910390f35b348015610b1657600080fd5b50610b1f61172e565b604051610b2c919061309b565b60405180910390f35b348015610b4157600080fd5b50610b5c6004803603810190610b57919061325d565b611734565b005b348015610b6a57600080fd5b50610b736118ad565b604051610b80919061309b565b60405180910390f35b348015610b9557600080fd5b50610bb06004803603810190610bab919061321d565b6118b3565b005b348015610bbe57600080fd5b50610bd96004803603810190610bd4919061316a565b611964565b604051610be69190612e6c565b60405180910390f35b348015610bfb57600080fd5b50610c04611a45565b604051610c11919061309b565b60405180910390f35b348015610c2657600080fd5b50610c2f611a4b565b604051610c3c919061309b565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c67919061325d565b611a51565b604051610c79919061309b565b60405180910390f35b348015610c8e57600080fd5b50610c97611ad8565b604051610ca4919061309b565b60405180910390f35b348015610cb957600080fd5b50610cd46004803603810190610ccf919061316a565b611ade565b005b348015610ce257600080fd5b50610cfd6004803603810190610cf89190613197565b611b3f565b005b348015610d0b57600080fd5b50610d14611bc2565b604051610d21919061309b565b60405180910390f35b348015610d3657600080fd5b50610d3f611bc8565b604051610d4c919061309b565b60405180910390f35b6000600860019054906101000a900460ff168015610d7f5750600860029054906101000a900460ff165b8015610d985750601860009054906101000a900460ff16155b15610da65760019050610dab565b600090505b90565b606060038054610dbd906132cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610de9906132cc565b8015610e365780601f10610e0b57610100808354040283529160200191610e36565b820191906000526020600020905b815481529060010190602001808311610e1957829003601f168201915b5050505050905090565b600080610e4b611bce565b9050610e58818585611bd6565b600191505092915050565b601860009054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610eaf611bce565b9050610ebc858285611d9f565b610ec7858585611e2b565b60019150509392505050565b61dead81565b60006012905090565b60007f000000000000000000000000000000000000000000115eec47f6cf7e35000000905090565b600080610f15611bce565b9050610f36818585610f278589611a51565b610f31919061332c565b611bd6565b600191505092915050565b60155481565b610f58610f52611bce565b82612452565b50565b7f000000000000000000000000173b9935b2e614637abca28d95eda7d2ff8bbf9e81565b600860009054906101000a900460ff1681565b60196020528060005260406000206000915054906101000a900460ff1681565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61103661261f565b60003073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110719190613118565b602060405180830381865afa15801561108e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110b29190613375565b90503073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016110ef9291906133a2565b6020604051808303816000875af115801561110e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113291906133e0565b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611179573d6000803e3d6000fd5b5050565b600b5481565b600860029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111e661261f565b6111f0600061269d565b565b6111fa61261f565b80600a81905550600a5460098190555060056009541115611250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124790613459565b60405180910390fd5b50565b600061125d61261f565b6000600860006101000a81548160ff0219169083151502179055506001905090565b60135481565b61129782611291611bce565b83611d9f565b6112a18282612452565b5050565b60145481565b6112b361261f565b60008173ffffffffffffffffffffffffffffffffffffffff16476040516112d9906134aa565b60006040518083038185875af1925050503d8060008114611316576040519150601f19603f3d011682016040523d82523d6000602084013e61131b565b606091505b505090508061132957600080fd5b5050565b61133561261f565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166860405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6113fd61261f565b6001600860016101000a81548160ff0219169083151502179055506001600860026101000a81548160ff0219169083151502179055506000601860006101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61148261261f565b80600860026101000a81548160ff02191690831515021790555050565b6060600480546114ae906132cc565b80601f01602080910402602001604051908101604052809291908181526020018280546114da906132cc565b80156115275780601f106114fc57610100808354040283529160200191611527565b820191906000526020600020905b81548152906001019060200180831161150a57829003601f168201915b5050505050905090565b61153961261f565b7f000000000000000000000000173b9935b2e614637abca28d95eda7d2ff8bbf9e73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115be90613531565b60405180910390fd5b6115d18282612763565b5050565b600a5481565b601160009054906101000a900460ff1681565b6000806115f9611bce565b905060006116078286611a51565b90508381101561164c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611643906135c3565b60405180910390fd5b6116598286868403611bd6565b60019250505092915050565b600080611670611bce565b905061167d818585611e2b565b600191505092915050565b61169061261f565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506116f182826118b3565b5050565b60105481565b60176020528060005260406000206000915054906101000a900460ff1681565b600860019054906101000a900460ff1681565b600f5481565b61173c61261f565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a29061362f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016117e69190613118565b602060405180830381865afa158015611803573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118279190613375565b90508273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b81526004016118649291906133a2565b6020604051808303816000875af1158015611883573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118a791906133e0565b50505050565b600e5481565b6118bb61261f565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516119589190612e6c565b60405180910390a25050565b600061196e61261f565b620186a0600161197c610e9a565b611986919061364f565b61199091906136c0565b8210156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613763565b60405180910390fd5b6103e860056119df610e9a565b6119e9919061364f565b6119f391906136c0565b821115611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2c906137f5565b60405180910390fd5b8160078190555060019050919050565b600c5481565b60095481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60075481565b611ae661261f565b80600c81905550600c54600b819055506005600b541115611b3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3390613861565b60405180910390fd5b50565b611b4761261f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611bb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bad906138f3565b60405180910390fd5b611bbf8161269d565b50565b60125481565b600d5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613985565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cab90613a17565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611d92919061309b565b60405180910390a3505050565b6000611dab8484611a51565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611e255781811015611e17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0e90613a83565b60405180910390fd5b611e248484848403611bd6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9190613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0090613ba7565b60405180910390fd5b601860009054906101000a900460ff1615611fab57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa190613c39565b60405180910390fd5b5b60008103611fc457611fbf83836000612804565b61244d565b6000611fcf30611196565b905060006007548210159050600080600060019050601160009054906101000a900460ff16801561200e575060155460105461200b9190613c59565b42105b15612020576012549250829150612061565b601160009054906101000a900460ff16801561203d575060105442105b156120515760135492506013549150612060565b600b5492506009549150600090505b5b83801561207a5750600860029054906101000a900460ff165b80156120935750600560149054906101000a900460ff16155b80156120e95750601760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561213f5750601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121955750601660008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121d9576001600560146101000a81548160ff0219169083151502179055506121bd612a7a565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061228f5750601660008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561229957600090505b6000811561243a57601760008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122fa5750600085115b1561235d576123256064612317878b612bc890919063ffffffff16565b612bde90919063ffffffff16565b905084600c5482612336919061364f565b61234091906136c0565b600d6000828254612351919061332c565b92505081905550612416565b601760008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156123b65750600084115b15612415576123e160646123d3868b612bc890919063ffffffff16565b612bde90919063ffffffff16565b905083600a54826123f2919061364f565b6123fc91906136c0565b600d600082825461240d919061332c565b925050819055505b5b600081111561242b5761242a8a3083612804565b5b80886124379190613c59565b97505b6124458a8a8a612804565b505050505050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124b890613cff565b60405180910390fd5b6124cd82600083612bf4565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a90613d91565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612606919061309b565b60405180910390a361261a83600084612bf9565b505050565b612627611bce565b73ffffffffffffffffffffffffffffffffffffffff16612645611450565b73ffffffffffffffffffffffffffffffffffffffff161461269b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269290613dfd565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286a90613b15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d990613ba7565b60405180910390fd5b6128ed838383612bf4565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612973576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296a90613e8f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612a61919061309b565b60405180910390a3612a74848484612bf9565b50505050565b6000612a8530611196565b90506000600d549050600080831480612a9e5750600082145b15612aab57505050612bc6565b6014600754612aba919061364f565b831115612ad3576014600754612ad0919061364f565b92505b60008390506000479050612ae682612bfe565b6000612afb8247612e3b90919063ffffffff16565b90506000612b2686612b18600d5485612bc890919063ffffffff16565b612bde90919063ffffffff16565b90506000600d81905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681604051612b76906134aa565b60006040518083038185875af1925050503d8060008114612bb3576040519150601f19603f3d011682016040523d82523d6000602084013e612bb8565b606091505b505080955050505050505050505b565b60008183612bd6919061364f565b905092915050565b60008183612bec91906136c0565b905092915050565b505050565b505050565b6000600267ffffffffffffffff811115612c1b57612c1a613eaf565b5b604051908082528060200260200182016040528015612c495781602001602082028036833780820191505090505b5090503081600081518110612c6157612c60613ede565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612d06573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d2a9190613f22565b81600181518110612d3e57612d3d613ede565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612da3307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611bd6565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612e05959493929190614048565b600060405180830381600087803b158015612e1f57600080fd5b505af1158015612e33573d6000803e3d6000fd5b505050505050565b60008183612e499190613c59565b905092915050565b60008115159050919050565b612e6681612e51565b82525050565b6000602082019050612e816000830184612e5d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ec1578082015181840152602081019050612ea6565b60008484015250505050565b6000601f19601f8301169050919050565b6000612ee982612e87565b612ef38185612e92565b9350612f03818560208601612ea3565b612f0c81612ecd565b840191505092915050565b60006020820190508181036000830152612f318184612ede565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f6982612f3e565b9050919050565b612f7981612f5e565b8114612f8457600080fd5b50565b600081359050612f9681612f70565b92915050565b6000819050919050565b612faf81612f9c565b8114612fba57600080fd5b50565b600081359050612fcc81612fa6565b92915050565b60008060408385031215612fe957612fe8612f39565b5b6000612ff785828601612f87565b925050602061300885828601612fbd565b9150509250929050565b6000819050919050565b600061303761303261302d84612f3e565b613012565b612f3e565b9050919050565b60006130498261301c565b9050919050565b600061305b8261303e565b9050919050565b61306b81613050565b82525050565b60006020820190506130866000830184613062565b92915050565b61309581612f9c565b82525050565b60006020820190506130b0600083018461308c565b92915050565b6000806000606084860312156130cf576130ce612f39565b5b60006130dd86828701612f87565b93505060206130ee86828701612f87565b92505060406130ff86828701612fbd565b9150509250925092565b61311281612f5e565b82525050565b600060208201905061312d6000830184613109565b92915050565b600060ff82169050919050565b61314981613133565b82525050565b60006020820190506131646000830184613140565b92915050565b6000602082840312156131805761317f612f39565b5b600061318e84828501612fbd565b91505092915050565b6000602082840312156131ad576131ac612f39565b5b60006131bb84828501612f87565b91505092915050565b6131cd81612e51565b81146131d857600080fd5b50565b6000813590506131ea816131c4565b92915050565b60006020828403121561320657613205612f39565b5b6000613214848285016131db565b91505092915050565b6000806040838503121561323457613233612f39565b5b600061324285828601612f87565b9250506020613253858286016131db565b9150509250929050565b6000806040838503121561327457613273612f39565b5b600061328285828601612f87565b925050602061329385828601612f87565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806132e457607f821691505b6020821081036132f7576132f661329d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061333782612f9c565b915061334283612f9c565b925082820190508082111561335a576133596132fd565b5b92915050565b60008151905061336f81612fa6565b92915050565b60006020828403121561338b5761338a612f39565b5b600061339984828501613360565b91505092915050565b60006040820190506133b76000830185613109565b6133c4602083018461308c565b9392505050565b6000815190506133da816131c4565b92915050565b6000602082840312156133f6576133f5612f39565b5b6000613404848285016133cb565b91505092915050565b7f4275792066656573206d757374206265203c3d20352e00000000000000000000600082015250565b6000613443601683612e92565b915061344e8261340d565b602082019050919050565b6000602082019050818103600083015261347281613436565b9050919050565b600081905092915050565b50565b6000613494600083613479565b915061349f82613484565b600082019050919050565b60006134b582613487565b9150819050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061351b603983612e92565b9150613526826134bf565b604082019050919050565b6000602082019050818103600083015261354a8161350e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135ad602583612e92565b91506135b882613551565b604082019050919050565b600060208201905081810360008301526135dc816135a0565b9050919050565b7f5f746f6b656e20616464726573732063616e6e6f742062652030000000000000600082015250565b6000613619601a83612e92565b9150613624826135e3565b602082019050919050565b600060208201905081810360008301526136488161360c565b9050919050565b600061365a82612f9c565b915061366583612f9c565b925082820261367381612f9c565b9150828204841483151761368a576136896132fd565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136cb82612f9c565b91506136d683612f9c565b9250826136e6576136e5613691565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061374d603583612e92565b9150613758826136f1565b604082019050919050565b6000602082019050818103600083015261377c81613740565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006137df603483612e92565b91506137ea82613783565b604082019050919050565b6000602082019050818103600083015261380e816137d2565b9050919050565b7f53656c6c2066656573206d757374206265203c3d20352e000000000000000000600082015250565b600061384b601783612e92565b915061385682613815565b602082019050919050565b6000602082019050818103600083015261387a8161383e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006138dd602683612e92565b91506138e882613881565b604082019050919050565b6000602082019050818103600083015261390c816138d0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061396f602483612e92565b915061397a82613913565b604082019050919050565b6000602082019050818103600083015261399e81613962565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a01602283612e92565b9150613a0c826139a5565b604082019050919050565b60006020820190508181036000830152613a30816139f4565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613a6d601d83612e92565b9150613a7882613a37565b602082019050919050565b60006020820190508181036000830152613a9c81613a60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613aff602583612e92565b9150613b0a82613aa3565b604082019050919050565b60006020820190508181036000830152613b2e81613af2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613b91602383612e92565b9150613b9c82613b35565b604082019050919050565b60006020820190508181036000830152613bc081613b84565b9050919050565b7f4e6f7420617574686f72697a656420746f207472616e73666572207072652d6d60008201527f6967726174696f6e2e0000000000000000000000000000000000000000000000602082015250565b6000613c23602983612e92565b9150613c2e82613bc7565b604082019050919050565b60006020820190508181036000830152613c5281613c16565b9050919050565b6000613c6482612f9c565b9150613c6f83612f9c565b9250828203905081811115613c8757613c866132fd565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ce9602183612e92565b9150613cf482613c8d565b604082019050919050565b60006020820190508181036000830152613d1881613cdc565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000613d7b602283612e92565b9150613d8682613d1f565b604082019050919050565b60006020820190508181036000830152613daa81613d6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613de7602083612e92565b9150613df282613db1565b602082019050919050565b60006020820190508181036000830152613e1681613dda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613e79602683612e92565b9150613e8482613e1d565b604082019050919050565b60006020820190508181036000830152613ea881613e6c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613f1c81612f70565b92915050565b600060208284031215613f3857613f37612f39565b5b6000613f4684828501613f0d565b91505092915050565b6000819050919050565b6000613f74613f6f613f6a84613f4f565b613012565b612f9c565b9050919050565b613f8481613f59565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fbf81612f5e565b82525050565b6000613fd18383613fb6565b60208301905092915050565b6000602082019050919050565b6000613ff582613f8a565b613fff8185613f95565b935061400a83613fa6565b8060005b8381101561403b5781516140228882613fc5565b975061402d83613fdd565b92505060018101905061400e565b5085935050505092915050565b600060a08201905061405d600083018861308c565b61406a6020830187613f7b565b818103604083015261407c8186613fea565b905061408b6060830185613109565b614098608083018461308c565b969550505050505056fea26469706673582212207cfc49c4891d46ef06a82de77509c694c8d85cfcd89c77b5425201823baf0cfe64736f6c63430008140033
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.