ERC-20
Overview
Max Total Supply
100,000,000 FTAO
Holders
74
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000006460565 FTAOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FixedTAO
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://www.fixedtao.com // Telegram: https://t.me/fixedtao // Twitter: https://x.com/fixedtao // SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/IUniswapV2Router02.sol"; import "./interfaces/IFTAODividendTracker.sol"; import "./interfaces/IUniswapV2Factory.sol"; contract FixedTAO is Ownable, ERC20 { error MaxTxAmountExceeded(); error MaxWalletAmountExceeded(); error NotAuthorized(); event OpenTrading(); event DisableLimits(); event TaxReduced(); event UpdateMarketingWL(address _marketingWallet); event UpdateTreasuryWL(address _treasury); event SwapBack(uint256 amount); event UpdateSwapTokenAt(uint256 amount); IFTAODividendTracker public dividendTracker; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 _totalSupply = 100_000_000 * 10 ** 18; address public pair; uint256 TAX = 5; uint256 private _initialTax = 30; bool private _taxReduced = false; uint256 private _maxAmount = _totalSupply / 200; // 0.5% of total supply uint256 private _maxWallet = _maxAmount; // 0.5% of total supply bool private _tradingEnable; address public marketingWallet; address public treasuryWallet; bool public limit = true; uint256 public swapTokenAt = _totalSupply / 1000; mapping(address => bool) private _isExcludedFromFees; bool private _swaping = false; modifier onSwap() { _swaping = true; _; _swaping = false; } constructor( address _dividendTracker, address _treasury ) ERC20("FixedTAO", "FTAO") { marketingWallet = _msgSender(); treasuryWallet = _treasury; pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); dividendTracker = IFTAODividendTracker(_dividendTracker); dividendTracker.setup(address(router), pair); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _isExcludedFromFees[address(dividendTracker)] = true; _mint(_msgSender(), _totalSupply); _approve(_msgSender(), address(router), type(uint256).max); } receive() external payable {} function setSwapTokenAt(uint256 value) external onlyOwner { require( value <= _totalSupply / 50, "Value must be less than or equal to SUPPLY / 50" ); swapTokenAt = value; emit UpdateSwapTokenAt(value); } function openTrading() external onlyOwner { _tradingEnable = true; emit OpenTrading(); } function getIsExcludedFromFees( address _address ) external view returns (bool) { return _isExcludedFromFees[_address]; } function excludedFromFees( address _address, bool _value ) external onlyOwner { _isExcludedFromFees[_address] = _value; } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; _maxAmount = _totalSupply; emit DisableLimits(); } function reduceTax() external onlyOwner { require(!_taxReduced, "Tax already reduced"); _taxReduced = true; emit TaxReduced(); } function _transfer( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} return; } require(_tradingEnable, "Trading is not open"); if (limit) { if ((from == pair || to == pair) && amount > _maxAmount) { revert MaxTxAmountExceeded(); } if (to != pair && balanceOf(to) + amount > _maxWallet) { revert MaxWalletAmountExceeded(); } } uint256 _totalFees = (amount * TAX) / 100; if (to == pair) { _totalFees = (amount * (_taxReduced ? TAX : _initialTax)) / 100; if (balanceOf(address(this)) >= swapTokenAt) { swapBack(); } } if (from == pair) { _totalFees = (amount * (_taxReduced ? TAX : _initialTax)) / 100; } if (_totalFees > 0) { super._transfer(from, address(this), _totalFees); amount = amount - _totalFees; } super._transfer(from, to, amount); try dividendTracker.setBalance(from, balanceOf(from)) {} catch {} try dividendTracker.setBalance(to, balanceOf(to)) {} catch {} } function swapBack() public onSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), swapTokenAt); router.swapExactTokensForETHSupportingFeeOnTransferTokens( swapTokenAt, 0, path, address(this), block.timestamp ); uint256 balance = address(this).balance; if (balance > 0) { uint256 marketingAmount = balance / 2; uint256 treasuryAmount = balance - marketingAmount; (bool sent, ) = payable(marketingWallet).call{ value: marketingAmount }(""); require(sent, "Failed to send Ether to marketing wallet"); (sent, ) = payable(treasuryWallet).call{value: treasuryAmount}(""); require(sent, "Failed to send Ether to treasury wallet"); } emit SwapBack(swapTokenAt); } function updateDividendTracker(address newAddress) external onlyOwner { require( newAddress != address(dividendTracker), "The dividend tracker already has that address" ); IFTAODividendTracker newDividendTracker = IFTAODividendTracker( newAddress ); newDividendTracker.setup(address(router), pair); dividendTracker = newDividendTracker; } function setMarketingWL(address _marketingWallet) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } marketingWallet = _marketingWallet; emit UpdateMarketingWL(_marketingWallet); } function setTreasuryWL(address _treasury) external { if (_msgSender() != owner() && _msgSender() != marketingWallet) { revert NotAuthorized(); } treasuryWallet = _treasury; emit UpdateTreasuryWL(_treasury); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; interface IFTAODividendTracker { function setup(address router, address pairt) external; function setBalance(address account, uint256 newBalance) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "./IUniswapV2Router01.sol"; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
{ "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":"_dividendTracker","type":"address"},{"internalType":"address","name":"_treasury","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MaxTxAmountExceeded","type":"error"},{"inputs":[],"name":"MaxWalletAmountExceeded","type":"error"},{"inputs":[],"name":"NotAuthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","type":"event"},{"anonymous":false,"inputs":[],"name":"TaxReduced","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":"address","name":"_marketingWallet","type":"address"}],"name":"UpdateMarketingWL","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UpdateSwapTokenAt","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_treasury","type":"address"}],"name":"UpdateTreasuryWL","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract IFTAODividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getIsExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reduceTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSwapTokenAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasuryWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokenAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506a52b7d2dcc80cd2e40000006007556005600955601e600a555f600b5f6101000a81548160ff02191690831515021790555060c86007546200008e919062000b40565b600c55600c54600d556001600f60146101000a81548160ff0219169083151502179055506103e8600754620000c4919062000b40565b6010555f60125f6101000a81548160ff021916908315150217905550348015620000ec575f80fd5b506040516200466238038062004662833981810160405281019062000112919062000bdc565b6040518060400160405280600881526020017f466978656454414f0000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4654414f000000000000000000000000000000000000000000000000000000008152506200019e62000192620006da60201b60201c565b620006e160201b60201c565b8160049081620001af919062000e7c565b508060059081620001c1919062000e7c565b505050620001d4620006da60201b60201c565b600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a0573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002c6919062000f60565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200032e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000354919062000f60565b6040518363ffffffff1660e01b81526004016200037392919062000fa1565b6020604051808303815f875af115801562000390573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620003b6919062000f60565b60085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508160065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632d34ba7960805160085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620004b692919062000fa1565b5f604051808303815f87803b158015620004ce575f80fd5b505af1158015620004e1573d5f803e3d5ffd5b50505050600160115f620004fa620006da60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f60805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160115f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200068e6200067f620006da60201b60201c565b600754620007a260201b60201c565b620006d2620006a2620006da60201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200090860201b60201c565b5050620011d8565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000813576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200080a906200102a565b60405180910390fd5b620008265f838362000ad360201b60201c565b8060035f8282546200083991906200104a565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008e9919062001095565b60405180910390a3620009045f838362000ad860201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000979576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009709062001124565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009ea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e190620011b8565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ac6919062001095565b60405180910390a3505050565b505050565b505050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000b4c8262000add565b915062000b598362000add565b92508262000b6c5762000b6b62000ae6565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000ba68262000b7b565b9050919050565b62000bb88162000b9a565b811462000bc3575f80fd5b50565b5f8151905062000bd68162000bad565b92915050565b5f806040838503121562000bf55762000bf462000b77565b5b5f62000c048582860162000bc6565b925050602062000c178582860162000bc6565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000c9d57607f821691505b60208210810362000cb35762000cb262000c58565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d177fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000cda565b62000d23868362000cda565b95508019841693508086168417925050509392505050565b5f819050919050565b5f62000d6462000d5e62000d588462000add565b62000d3b565b62000add565b9050919050565b5f819050919050565b62000d7f8362000d44565b62000d9762000d8e8262000d6b565b84845462000ce6565b825550505050565b5f90565b62000dad62000d9f565b62000dba81848462000d74565b505050565b5b8181101562000de15762000dd55f8262000da3565b60018101905062000dc0565b5050565b601f82111562000e305762000dfa8162000cb9565b62000e058462000ccb565b8101602085101562000e15578190505b62000e2d62000e248562000ccb565b83018262000dbf565b50505b505050565b5f82821c905092915050565b5f62000e525f198460080262000e35565b1980831691505092915050565b5f62000e6c838362000e41565b9150826002028217905092915050565b62000e878262000c21565b67ffffffffffffffff81111562000ea35762000ea262000c2b565b5b62000eaf825462000c85565b62000ebc82828562000de5565b5f60209050601f83116001811462000ef2575f841562000edd578287015190505b62000ee9858262000e5f565b86555062000f58565b601f19841662000f028662000cb9565b5f5b8281101562000f2b5784890151825560018201915060208501945060208101905062000f04565b8683101562000f4b578489015162000f47601f89168262000e41565b8355505b6001600288020188555050505b505050505050565b5f6020828403121562000f785762000f7762000b77565b5b5f62000f878482850162000bc6565b91505092915050565b62000f9b8162000b9a565b82525050565b5f60408201905062000fb65f83018562000f90565b62000fc5602083018462000f90565b9392505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62001012601f8362000fcc565b91506200101f8262000fdc565b602082019050919050565b5f6020820190508181035f830152620010438162001004565b9050919050565b5f620010568262000add565b9150620010638362000add565b92508282019050808211156200107e576200107d62000b13565b5b92915050565b6200108f8162000add565b82525050565b5f602082019050620010aa5f83018462001084565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200110c60248362000fcc565b91506200111982620010b0565b604082019050919050565b5f6020820190508181035f8301526200113d81620010fe565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f620011a060228362000fcc565b9150620011ad8262001144565b604082019050919050565b5f6020820190508181035f830152620011d18162001192565b9050919050565b60805161345c620012065f395f8181610b5e01528181610c3d01528181610c660152611288015261345c5ff3fe6080604052600436106101d0575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610657578063dd62ed3e1461066d578063f2fde38b146106a9578063f928364c146106d1576101d7565b8063a457c2d71461058b578063a4d66daf146105c7578063a8aa1b31146105f1578063a9059cbb1461061b576101d7565b8063864b3167116100d0578063864b3167146104e757806388bdd9be1461050f5780638da5cb5b1461053757806395d89b4114610561576101d7565b806375f0a874146104595780637b16cea0146104835780637fec621e146104bf576101d7565b806332fc4c011161016e5780636ac5eeee1161013d5780636ac5eeee146103c757806370a08231146103dd578063715018a61461041957806373bc5a361461042f576101d7565b806332fc4c0114610323578063395093511461034b57806341fb0d21146103875780634626402b1461039d576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd146102935780632c1f5216146102cf578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806316697fc514610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106e7565b6040516101fc91906124a0565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612551565b610777565b60405161023891906125a9565b60405180910390f35b34801561024c575f80fd5b50610267600480360381019061026291906125ec565b610799565b005b348015610274575f80fd5b5061027d6107f9565b60405161028a9190612639565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612652565b610802565b6040516102c691906125a9565b60405180910390f35b3480156102da575f80fd5b506102e3610830565b6040516102f091906126fd565b60405180910390f35b348015610304575f80fd5b5061030d610855565b60405161031a9190612731565b60405180910390f35b34801561032e575f80fd5b506103496004803603810190610344919061274a565b61085d565b005b348015610356575f80fd5b50610371600480360381019061036c9190612551565b6109ad565b60405161037e91906125a9565b60405180910390f35b348015610392575f80fd5b5061039b6109e3565b005b3480156103a8575f80fd5b506103b1610a82565b6040516103be9190612784565b60405180910390f35b3480156103d2575f80fd5b506103db610aa7565b005b3480156103e8575f80fd5b5061040360048036038101906103fe919061274a565b610f0d565b6040516104109190612639565b60405180910390f35b348015610424575f80fd5b5061042d610f53565b005b34801561043a575f80fd5b50610443610f66565b6040516104509190612639565b60405180910390f35b348015610464575f80fd5b5061046d610f6c565b60405161047a9190612784565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a4919061274a565b610f92565b6040516104b691906125a9565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061274a565b610fe4565b005b3480156104f2575f80fd5b5061050d6004803603810190610508919061279d565b611135565b005b34801561051a575f80fd5b506105356004803603810190610530919061274a565b6111cf565b005b348015610542575f80fd5b5061054b611357565b6040516105589190612784565b60405180910390f35b34801561056c575f80fd5b5061057561137e565b60405161058291906124a0565b60405180910390f35b348015610596575f80fd5b506105b160048036038101906105ac9190612551565b61140e565b6040516105be91906125a9565b60405180910390f35b3480156105d2575f80fd5b506105db611483565b6040516105e891906125a9565b60405180910390f35b3480156105fc575f80fd5b50610605611496565b6040516106129190612784565b60405180910390f35b348015610626575f80fd5b50610641600480360381019061063c9190612551565b6114bb565b60405161064e91906125a9565b60405180910390f35b348015610662575f80fd5b5061066b6114dd565b005b348015610678575f80fd5b50610693600480360381019061068e91906127c8565b61152d565b6040516106a09190612639565b60405180910390f35b3480156106b4575f80fd5b506106cf60048036038101906106ca919061274a565b6115af565b005b3480156106dc575f80fd5b506106e5611631565b005b6060600480546106f690612833565b80601f016020809104026020016040519081016040528092919081815260200182805461072290612833565b801561076d5780601f106107445761010080835404028352916020019161076d565b820191905f5260205f20905b81548152906001019060200180831161075057829003601f168201915b5050505050905090565b5f806107816116e2565b905061078e8185856116e9565b600191505092915050565b6107a16118ac565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061080c6116e2565b905061081985828561192a565b6108248585856119b5565b60019150509392505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610865611357565b73ffffffffffffffffffffffffffffffffffffffff166108836116e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156108fc5750600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108e36116e2565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610933576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f02816040516109a29190612784565b60405180910390a150565b5f806109b76116e2565b90506109d88185856109c9858961152d565b6109d39190612890565b6116e9565b600191505092915050565b6109eb6118ac565b600b5f9054906101000a900460ff1615610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061290d565b60405180910390fd5b6001600b5f6101000a81548160ff0219169083151502179055507fd6ca02926c317c2f12e122f306c0ce80c6bff5a0ae1d47de49d9414690a220e460405160405180910390a1565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160125f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610add57610adc61292b565b5b604051908082528060200260200182016040528015610b0b5781602001602082028036833780820191505090505b50905030815f81518110610b2257610b21612958565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bc5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be99190612999565b81600181518110610bfd57610bfc612958565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610c64307f00000000000000000000000000000000000000000000000000000000000000006010546116e9565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9476010545f8430426040518663ffffffff1660e01b8152600401610cc7959493929190612ab4565b5f604051808303815f87803b158015610cde575f80fd5b505af1158015610cf0573d5f803e3d5ffd5b505050505f4790505f811115610eb7575f600282610d0e9190612b39565b90505f8183610d1d9190612b69565b90505f600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610d6690612bc9565b5f6040518083038185875af1925050503d805f8114610da0576040519150601f19603f3d011682016040523d82523d5f602084013e610da5565b606091505b5050905080610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090612c4d565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e2e90612bc9565b5f6040518083038185875af1925050503d805f8114610e68576040519150601f19603f3d011682016040523d82523d5f602084013e610e6d565b606091505b50508091505080610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90612cdb565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601054604051610ee89190612639565b60405180910390a150505f60125f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f5b6118ac565b610f645f6120dc565b565b60105481565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610fec611357565b73ffffffffffffffffffffffffffffffffffffffff1661100a6116e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156110835750600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661106a6116e2565b73ffffffffffffffffffffffffffffffffffffffff1614155b156110ba576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e728160405161112a9190612784565b60405180910390a150565b61113d6118ac565b603260075461114c9190612b39565b81111561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612d69565b60405180910390fd5b806010819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb816040516111c49190612639565b60405180910390a150565b6111d76118ac565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612df7565b60405180910390fd5b5f8190508073ffffffffffffffffffffffffffffffffffffffff16632d34ba797f000000000000000000000000000000000000000000000000000000000000000060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016112e6929190612e15565b5f604051808303815f87803b1580156112fd575f80fd5b505af115801561130f573d5f803e3d5ffd5b505050508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461138d90612833565b80601f01602080910402602001604051908101604052809291908181526020018280546113b990612833565b80156114045780601f106113db57610100808354040283529160200191611404565b820191905f5260205f20905b8154815290600101906020018083116113e757829003601f168201915b5050505050905090565b5f806114186116e2565b90505f611425828661152d565b90508381101561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612eac565b60405180910390fd5b61147782868684036116e9565b60019250505092915050565b600f60149054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806114c56116e2565b90506114d28185856119b5565b600191505092915050565b6114e56118ac565b6001600e5f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115b76118ac565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612f3a565b60405180910390fd5b61162e816120dc565b50565b6116396118ac565b600f60149054906101000a900460ff16611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612fa2565b60405180910390fd5b5f600f60146101000a81548160ff021916908315150217905550600754600d81905550600754600c819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90613030565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc906130be565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189f9190612639565b60405180910390a3505050565b6118b46116e2565b73ffffffffffffffffffffffffffffffffffffffff166118d2611357565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613126565b60405180910390fd5b565b5f611935848461152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119af57818110156119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061318e565b60405180910390fd5b6119ae84848484036116e9565b5b50505050565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a50575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b01575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b00575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611b17575060125f9054906101000a900460ff165b15611c4657611b2783838361219d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611b6e86610f0d565b6040518363ffffffff1660e01b8152600401611b8b9291906131ac565b5f604051808303815f87803b158015611ba2575f80fd5b505af1925050508015611bb3575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611bfb85610f0d565b6040518363ffffffff1660e01b8152600401611c189291906131ac565b5f604051808303815f87803b158015611c2f575f80fd5b505af1925050508015611c40575060015b506120d7565b600e5f9054906101000a900460ff16611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b9061321d565b60405180910390fd5b600f60149054906101000a900460ff1615611e3d5760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d50575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611d5d5750600c5481115b15611d94576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e055750600d5481611df984610f0d565b611e039190612890565b115b15611e3c576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460095483611e4e919061323b565b611e589190612b39565b905060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f01576064600b5f9054906101000a900460ff16611ecb57600a54611ecf565b6009545b83611eda919061323b565b611ee49190612b39565b9050601054611ef230610f0d565b10611f0057611eff610aa7565b5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f8e576064600b5f9054906101000a900460ff16611f7257600a54611f76565b6009545b83611f81919061323b565b611f8b9190612b39565b90505b5f811115611fb057611fa184308361219d565b8082611fad9190612b69565b91505b611fbb84848461219d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561200287610f0d565b6040518363ffffffff1660e01b815260040161201f9291906131ac565b5f604051808303815f87803b158015612036575f80fd5b505af1925050508015612047575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8461208f86610f0d565b6040518363ffffffff1660e01b81526004016120ac9291906131ac565b5f604051808303815f87803b1580156120c3575f80fd5b505af19250505080156120d4575060015b50505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906132ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122709061337a565b60405180910390fd5b61228483838361240c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff90613408565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123f39190612639565b60405180910390a3612406848484612411565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561244d578082015181840152602081019050612432565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61247282612416565b61247c8185612420565b935061248c818560208601612430565b61249581612458565b840191505092915050565b5f6020820190508181035f8301526124b88184612468565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124ed826124c4565b9050919050565b6124fd816124e3565b8114612507575f80fd5b50565b5f81359050612518816124f4565b92915050565b5f819050919050565b6125308161251e565b811461253a575f80fd5b50565b5f8135905061254b81612527565b92915050565b5f8060408385031215612567576125666124c0565b5b5f6125748582860161250a565b92505060206125858582860161253d565b9150509250929050565b5f8115159050919050565b6125a38161258f565b82525050565b5f6020820190506125bc5f83018461259a565b92915050565b6125cb8161258f565b81146125d5575f80fd5b50565b5f813590506125e6816125c2565b92915050565b5f8060408385031215612602576126016124c0565b5b5f61260f8582860161250a565b9250506020612620858286016125d8565b9150509250929050565b6126338161251e565b82525050565b5f60208201905061264c5f83018461262a565b92915050565b5f805f60608486031215612669576126686124c0565b5b5f6126768682870161250a565b93505060206126878682870161250a565b92505060406126988682870161253d565b9150509250925092565b5f819050919050565b5f6126c56126c06126bb846124c4565b6126a2565b6124c4565b9050919050565b5f6126d6826126ab565b9050919050565b5f6126e7826126cc565b9050919050565b6126f7816126dd565b82525050565b5f6020820190506127105f8301846126ee565b92915050565b5f60ff82169050919050565b61272b81612716565b82525050565b5f6020820190506127445f830184612722565b92915050565b5f6020828403121561275f5761275e6124c0565b5b5f61276c8482850161250a565b91505092915050565b61277e816124e3565b82525050565b5f6020820190506127975f830184612775565b92915050565b5f602082840312156127b2576127b16124c0565b5b5f6127bf8482850161253d565b91505092915050565b5f80604083850312156127de576127dd6124c0565b5b5f6127eb8582860161250a565b92505060206127fc8582860161250a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061284a57607f821691505b60208210810361285d5761285c612806565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61289a8261251e565b91506128a58361251e565b92508282019050808211156128bd576128bc612863565b5b92915050565b7f54617820616c72656164792072656475636564000000000000000000000000005f82015250565b5f6128f7601383612420565b9150612902826128c3565b602082019050919050565b5f6020820190508181035f830152612924816128eb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612993816124f4565b92915050565b5f602082840312156129ae576129ad6124c0565b5b5f6129bb84828501612985565b91505092915050565b5f819050919050565b5f6129e76129e26129dd846129c4565b6126a2565b61251e565b9050919050565b6129f7816129cd565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612a2f816124e3565b82525050565b5f612a408383612a26565b60208301905092915050565b5f602082019050919050565b5f612a62826129fd565b612a6c8185612a07565b9350612a7783612a17565b805f5b83811015612aa7578151612a8e8882612a35565b9750612a9983612a4c565b925050600181019050612a7a565b5085935050505092915050565b5f60a082019050612ac75f83018861262a565b612ad460208301876129ee565b8181036040830152612ae68186612a58565b9050612af56060830185612775565b612b02608083018461262a565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b438261251e565b9150612b4e8361251e565b925082612b5e57612b5d612b0c565b5b828204905092915050565b5f612b738261251e565b9150612b7e8361251e565b9250828203905081811115612b9657612b95612863565b5b92915050565b5f81905092915050565b50565b5f612bb45f83612b9c565b9150612bbf82612ba6565b5f82019050919050565b5f612bd382612ba9565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612c37602883612420565b9150612c4282612bdd565b604082019050919050565b5f6020820190508181035f830152612c6481612c2b565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612cc5602783612420565b9150612cd082612c6b565b604082019050919050565b5f6020820190508181035f830152612cf281612cb9565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612d53602f83612420565b9150612d5e82612cf9565b604082019050919050565b5f6020820190508181035f830152612d8081612d47565b9050919050565b7f546865206469766964656e6420747261636b657220616c7265616479206861735f8201527f2074686174206164647265737300000000000000000000000000000000000000602082015250565b5f612de1602d83612420565b9150612dec82612d87565b604082019050919050565b5f6020820190508181035f830152612e0e81612dd5565b9050919050565b5f604082019050612e285f830185612775565b612e356020830184612775565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612e96602583612420565b9150612ea182612e3c565b604082019050919050565b5f6020820190508181035f830152612ec381612e8a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f24602683612420565b9150612f2f82612eca565b604082019050919050565b5f6020820190508181035f830152612f5181612f18565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612f8c601683612420565b9150612f9782612f58565b602082019050919050565b5f6020820190508181035f830152612fb981612f80565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61301a602483612420565b915061302582612fc0565b604082019050919050565b5f6020820190508181035f8301526130478161300e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130a8602283612420565b91506130b38261304e565b604082019050919050565b5f6020820190508181035f8301526130d58161309c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613110602083612420565b915061311b826130dc565b602082019050919050565b5f6020820190508181035f83015261313d81613104565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613178601d83612420565b915061318382613144565b602082019050919050565b5f6020820190508181035f8301526131a58161316c565b9050919050565b5f6040820190506131bf5f830185612775565b6131cc602083018461262a565b9392505050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f613207601383612420565b9150613212826131d3565b602082019050919050565b5f6020820190508181035f830152613234816131fb565b9050919050565b5f6132458261251e565b91506132508361251e565b925082820261325e8161251e565b9150828204841483151761327557613274612863565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6132d6602583612420565b91506132e18261327c565b604082019050919050565b5f6020820190508181035f830152613303816132ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613364602383612420565b915061336f8261330a565b604082019050919050565b5f6020820190508181035f83015261339181613358565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133f2602683612420565b91506133fd82613398565b604082019050919050565b5f6020820190508181035f83015261341f816133e6565b905091905056fea26469706673582212205ae96dd9cd9665bc2a997884c75c963ebe365984d2a3cfafd295d2927a4ef5ee64736f6c634300081700330000000000000000000000002bb7bc10120207bc184cafcdba2195477dca64e9000000000000000000000000c2153ad75534876ccf6797f92846ec32c20a8249
Deployed Bytecode
0x6080604052600436106101d0575f3560e01c806375f0a874116100f6578063a457c2d711610094578063c9567bf911610063578063c9567bf914610657578063dd62ed3e1461066d578063f2fde38b146106a9578063f928364c146106d1576101d7565b8063a457c2d71461058b578063a4d66daf146105c7578063a8aa1b31146105f1578063a9059cbb1461061b576101d7565b8063864b3167116100d0578063864b3167146104e757806388bdd9be1461050f5780638da5cb5b1461053757806395d89b4114610561576101d7565b806375f0a874146104595780637b16cea0146104835780637fec621e146104bf576101d7565b806332fc4c011161016e5780636ac5eeee1161013d5780636ac5eeee146103c757806370a08231146103dd578063715018a61461041957806373bc5a361461042f576101d7565b806332fc4c0114610323578063395093511461034b57806341fb0d21146103875780634626402b1461039d576101d7565b806318160ddd116101aa57806318160ddd1461026957806323b872dd146102935780632c1f5216146102cf578063313ce567146102f9576101d7565b806306fdde03146101db578063095ea7b31461020557806316697fc514610241576101d7565b366101d757005b5f80fd5b3480156101e6575f80fd5b506101ef6106e7565b6040516101fc91906124a0565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612551565b610777565b60405161023891906125a9565b60405180910390f35b34801561024c575f80fd5b50610267600480360381019061026291906125ec565b610799565b005b348015610274575f80fd5b5061027d6107f9565b60405161028a9190612639565b60405180910390f35b34801561029e575f80fd5b506102b960048036038101906102b49190612652565b610802565b6040516102c691906125a9565b60405180910390f35b3480156102da575f80fd5b506102e3610830565b6040516102f091906126fd565b60405180910390f35b348015610304575f80fd5b5061030d610855565b60405161031a9190612731565b60405180910390f35b34801561032e575f80fd5b506103496004803603810190610344919061274a565b61085d565b005b348015610356575f80fd5b50610371600480360381019061036c9190612551565b6109ad565b60405161037e91906125a9565b60405180910390f35b348015610392575f80fd5b5061039b6109e3565b005b3480156103a8575f80fd5b506103b1610a82565b6040516103be9190612784565b60405180910390f35b3480156103d2575f80fd5b506103db610aa7565b005b3480156103e8575f80fd5b5061040360048036038101906103fe919061274a565b610f0d565b6040516104109190612639565b60405180910390f35b348015610424575f80fd5b5061042d610f53565b005b34801561043a575f80fd5b50610443610f66565b6040516104509190612639565b60405180910390f35b348015610464575f80fd5b5061046d610f6c565b60405161047a9190612784565b60405180910390f35b34801561048e575f80fd5b506104a960048036038101906104a4919061274a565b610f92565b6040516104b691906125a9565b60405180910390f35b3480156104ca575f80fd5b506104e560048036038101906104e0919061274a565b610fe4565b005b3480156104f2575f80fd5b5061050d6004803603810190610508919061279d565b611135565b005b34801561051a575f80fd5b506105356004803603810190610530919061274a565b6111cf565b005b348015610542575f80fd5b5061054b611357565b6040516105589190612784565b60405180910390f35b34801561056c575f80fd5b5061057561137e565b60405161058291906124a0565b60405180910390f35b348015610596575f80fd5b506105b160048036038101906105ac9190612551565b61140e565b6040516105be91906125a9565b60405180910390f35b3480156105d2575f80fd5b506105db611483565b6040516105e891906125a9565b60405180910390f35b3480156105fc575f80fd5b50610605611496565b6040516106129190612784565b60405180910390f35b348015610626575f80fd5b50610641600480360381019061063c9190612551565b6114bb565b60405161064e91906125a9565b60405180910390f35b348015610662575f80fd5b5061066b6114dd565b005b348015610678575f80fd5b50610693600480360381019061068e91906127c8565b61152d565b6040516106a09190612639565b60405180910390f35b3480156106b4575f80fd5b506106cf60048036038101906106ca919061274a565b6115af565b005b3480156106dc575f80fd5b506106e5611631565b005b6060600480546106f690612833565b80601f016020809104026020016040519081016040528092919081815260200182805461072290612833565b801561076d5780601f106107445761010080835404028352916020019161076d565b820191905f5260205f20905b81548152906001019060200180831161075057829003601f168201915b5050505050905090565b5f806107816116e2565b905061078e8185856116e9565b600191505092915050565b6107a16118ac565b8060115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600354905090565b5f8061080c6116e2565b905061081985828561192a565b6108248585856119b5565b60019150509392505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f6012905090565b610865611357565b73ffffffffffffffffffffffffffffffffffffffff166108836116e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156108fc5750600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108e36116e2565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610933576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fbd5aa8e04dbf8cd0c0a2cf0d7f15cab9d94d85af3f5d347dc8359b9194610f02816040516109a29190612784565b60405180910390a150565b5f806109b76116e2565b90506109d88185856109c9858961152d565b6109d39190612890565b6116e9565b600191505092915050565b6109eb6118ac565b600b5f9054906101000a900460ff1615610a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a319061290d565b60405180910390fd5b6001600b5f6101000a81548160ff0219169083151502179055507fd6ca02926c317c2f12e122f306c0ce80c6bff5a0ae1d47de49d9414690a220e460405160405180910390a1565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600160125f6101000a81548160ff0219169083151502179055505f600267ffffffffffffffff811115610add57610adc61292b565b5b604051908082528060200260200182016040528015610b0b5781602001602082028036833780820191505090505b50905030815f81518110610b2257610b21612958565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bc5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610be99190612999565b81600181518110610bfd57610bfc612958565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050610c64307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6010546116e9565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9476010545f8430426040518663ffffffff1660e01b8152600401610cc7959493929190612ab4565b5f604051808303815f87803b158015610cde575f80fd5b505af1158015610cf0573d5f803e3d5ffd5b505050505f4790505f811115610eb7575f600282610d0e9190612b39565b90505f8183610d1d9190612b69565b90505f600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610d6690612bc9565b5f6040518083038185875af1925050503d805f8114610da0576040519150601f19603f3d011682016040523d82523d5f602084013e610da5565b606091505b5050905080610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090612c4d565b60405180910390fd5b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610e2e90612bc9565b5f6040518083038185875af1925050503d805f8114610e68576040519150601f19603f3d011682016040523d82523d5f602084013e610e6d565b606091505b50508091505080610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90612cdb565b60405180910390fd5b5050505b7fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05601054604051610ee89190612639565b60405180910390a150505f60125f6101000a81548160ff021916908315150217905550565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610f5b6118ac565b610f645f6120dc565b565b60105481565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff169050919050565b610fec611357565b73ffffffffffffffffffffffffffffffffffffffff1661100a6116e2565b73ffffffffffffffffffffffffffffffffffffffff16141580156110835750600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661106a6116e2565b73ffffffffffffffffffffffffffffffffffffffff1614155b156110ba576040517fea8e4eb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507ffd0b0a42994d3cda2ac8e0f517a2c764afa4cdebeac6d7cf6da7879ba15b0e728160405161112a9190612784565b60405180910390a150565b61113d6118ac565b603260075461114c9190612b39565b81111561118e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118590612d69565b60405180910390fd5b806010819055507f4cba14fd4026630e64b03f8c6a0130ca310c15a5376cf7f6735c66880bb7bceb816040516111c49190612639565b60405180910390a150565b6111d76118ac565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d90612df7565b60405180910390fd5b5f8190508073ffffffffffffffffffffffffffffffffffffffff16632d34ba797f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016112e6929190612e15565b5f604051808303815f87803b1580156112fd575f80fd5b505af115801561130f573d5f803e3d5ffd5b505050508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461138d90612833565b80601f01602080910402602001604051908101604052809291908181526020018280546113b990612833565b80156114045780601f106113db57610100808354040283529160200191611404565b820191905f5260205f20905b8154815290600101906020018083116113e757829003601f168201915b5050505050905090565b5f806114186116e2565b90505f611425828661152d565b90508381101561146a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146190612eac565b60405180910390fd5b61147782868684036116e9565b60019250505092915050565b600f60149054906101000a900460ff1681565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f806114c56116e2565b90506114d28185856119b5565b600191505092915050565b6114e56118ac565b6001600e5f6101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6115b76118ac565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90612f3a565b60405180910390fd5b61162e816120dc565b50565b6116396118ac565b600f60149054906101000a900460ff16611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167f90612fa2565b60405180910390fd5b5f600f60146101000a81548160ff021916908315150217905550600754600d81905550600754600c819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611757576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174e90613030565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc906130be565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161189f9190612639565b60405180910390a3505050565b6118b46116e2565b73ffffffffffffffffffffffffffffffffffffffff166118d2611357565b73ffffffffffffffffffffffffffffffffffffffff1614611928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191f90613126565b60405180910390fd5b565b5f611935848461152d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146119af57818110156119a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119989061318e565b60405180910390fd5b6119ae84848484036116e9565b5b50505050565b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611a50575060115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b80611b01575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b00575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80611b17575060125f9054906101000a900460ff165b15611c4657611b2783838361219d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc84611b6e86610f0d565b6040518363ffffffff1660e01b8152600401611b8b9291906131ac565b5f604051808303815f87803b158015611ba2575f80fd5b505af1925050508015611bb3575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc83611bfb85610f0d565b6040518363ffffffff1660e01b8152600401611c189291906131ac565b5f604051808303815f87803b158015611c2f575f80fd5b505af1925050508015611c40575060015b506120d7565b600e5f9054906101000a900460ff16611c94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8b9061321d565b60405180910390fd5b600f60149054906101000a900460ff1615611e3d5760085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611d50575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015611d5d5750600c5481115b15611d94576040517f801bc44b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611e055750600d5481611df984610f0d565b611e039190612890565b115b15611e3c576040517fa9a44dff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5f606460095483611e4e919061323b565b611e589190612b39565b905060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f01576064600b5f9054906101000a900460ff16611ecb57600a54611ecf565b6009545b83611eda919061323b565b611ee49190612b39565b9050601054611ef230610f0d565b10611f0057611eff610aa7565b5b5b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611f8e576064600b5f9054906101000a900460ff16611f7257600a54611f76565b6009545b83611f81919061323b565b611f8b9190612b39565b90505b5f811115611fb057611fa184308361219d565b8082611fad9190612b69565b91505b611fbb84848461219d565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8561200287610f0d565b6040518363ffffffff1660e01b815260040161201f9291906131ac565b5f604051808303815f87803b158015612036575f80fd5b505af1925050508015612047575060015b5060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e30443bc8461208f86610f0d565b6040518363ffffffff1660e01b81526004016120ac9291906131ac565b5f604051808303815f87803b1580156120c3575f80fd5b505af19250505080156120d4575060015b50505b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906132ec565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612279576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122709061337a565b60405180910390fd5b61228483838361240c565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612308576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ff90613408565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123f39190612639565b60405180910390a3612406848484612411565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561244d578082015181840152602081019050612432565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61247282612416565b61247c8185612420565b935061248c818560208601612430565b61249581612458565b840191505092915050565b5f6020820190508181035f8301526124b88184612468565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124ed826124c4565b9050919050565b6124fd816124e3565b8114612507575f80fd5b50565b5f81359050612518816124f4565b92915050565b5f819050919050565b6125308161251e565b811461253a575f80fd5b50565b5f8135905061254b81612527565b92915050565b5f8060408385031215612567576125666124c0565b5b5f6125748582860161250a565b92505060206125858582860161253d565b9150509250929050565b5f8115159050919050565b6125a38161258f565b82525050565b5f6020820190506125bc5f83018461259a565b92915050565b6125cb8161258f565b81146125d5575f80fd5b50565b5f813590506125e6816125c2565b92915050565b5f8060408385031215612602576126016124c0565b5b5f61260f8582860161250a565b9250506020612620858286016125d8565b9150509250929050565b6126338161251e565b82525050565b5f60208201905061264c5f83018461262a565b92915050565b5f805f60608486031215612669576126686124c0565b5b5f6126768682870161250a565b93505060206126878682870161250a565b92505060406126988682870161253d565b9150509250925092565b5f819050919050565b5f6126c56126c06126bb846124c4565b6126a2565b6124c4565b9050919050565b5f6126d6826126ab565b9050919050565b5f6126e7826126cc565b9050919050565b6126f7816126dd565b82525050565b5f6020820190506127105f8301846126ee565b92915050565b5f60ff82169050919050565b61272b81612716565b82525050565b5f6020820190506127445f830184612722565b92915050565b5f6020828403121561275f5761275e6124c0565b5b5f61276c8482850161250a565b91505092915050565b61277e816124e3565b82525050565b5f6020820190506127975f830184612775565b92915050565b5f602082840312156127b2576127b16124c0565b5b5f6127bf8482850161253d565b91505092915050565b5f80604083850312156127de576127dd6124c0565b5b5f6127eb8582860161250a565b92505060206127fc8582860161250a565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061284a57607f821691505b60208210810361285d5761285c612806565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61289a8261251e565b91506128a58361251e565b92508282019050808211156128bd576128bc612863565b5b92915050565b7f54617820616c72656164792072656475636564000000000000000000000000005f82015250565b5f6128f7601383612420565b9150612902826128c3565b602082019050919050565b5f6020820190508181035f830152612924816128eb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050612993816124f4565b92915050565b5f602082840312156129ae576129ad6124c0565b5b5f6129bb84828501612985565b91505092915050565b5f819050919050565b5f6129e76129e26129dd846129c4565b6126a2565b61251e565b9050919050565b6129f7816129cd565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b612a2f816124e3565b82525050565b5f612a408383612a26565b60208301905092915050565b5f602082019050919050565b5f612a62826129fd565b612a6c8185612a07565b9350612a7783612a17565b805f5b83811015612aa7578151612a8e8882612a35565b9750612a9983612a4c565b925050600181019050612a7a565b5085935050505092915050565b5f60a082019050612ac75f83018861262a565b612ad460208301876129ee565b8181036040830152612ae68186612a58565b9050612af56060830185612775565b612b02608083018461262a565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612b438261251e565b9150612b4e8361251e565b925082612b5e57612b5d612b0c565b5b828204905092915050565b5f612b738261251e565b9150612b7e8361251e565b9250828203905081811115612b9657612b95612863565b5b92915050565b5f81905092915050565b50565b5f612bb45f83612b9c565b9150612bbf82612ba6565b5f82019050919050565b5f612bd382612ba9565b9150819050919050565b7f4661696c656420746f2073656e6420457468657220746f206d61726b6574696e5f8201527f672077616c6c6574000000000000000000000000000000000000000000000000602082015250565b5f612c37602883612420565b9150612c4282612bdd565b604082019050919050565b5f6020820190508181035f830152612c6481612c2b565b9050919050565b7f4661696c656420746f2073656e6420457468657220746f2074726561737572795f8201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b5f612cc5602783612420565b9150612cd082612c6b565b604082019050919050565b5f6020820190508181035f830152612cf281612cb9565b9050919050565b7f56616c7565206d757374206265206c657373207468616e206f7220657175616c5f8201527f20746f20535550504c59202f2035300000000000000000000000000000000000602082015250565b5f612d53602f83612420565b9150612d5e82612cf9565b604082019050919050565b5f6020820190508181035f830152612d8081612d47565b9050919050565b7f546865206469766964656e6420747261636b657220616c7265616479206861735f8201527f2074686174206164647265737300000000000000000000000000000000000000602082015250565b5f612de1602d83612420565b9150612dec82612d87565b604082019050919050565b5f6020820190508181035f830152612e0e81612dd5565b9050919050565b5f604082019050612e285f830185612775565b612e356020830184612775565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612e96602583612420565b9150612ea182612e3c565b604082019050919050565b5f6020820190508181035f830152612ec381612e8a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612f24602683612420565b9150612f2f82612eca565b604082019050919050565b5f6020820190508181035f830152612f5181612f18565b9050919050565b7f4c696d69747320616c72656164792072656d6f766564000000000000000000005f82015250565b5f612f8c601683612420565b9150612f9782612f58565b602082019050919050565b5f6020820190508181035f830152612fb981612f80565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61301a602483612420565b915061302582612fc0565b604082019050919050565b5f6020820190508181035f8301526130478161300e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130a8602283612420565b91506130b38261304e565b604082019050919050565b5f6020820190508181035f8301526130d58161309c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613110602083612420565b915061311b826130dc565b602082019050919050565b5f6020820190508181035f83015261313d81613104565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613178601d83612420565b915061318382613144565b602082019050919050565b5f6020820190508181035f8301526131a58161316c565b9050919050565b5f6040820190506131bf5f830185612775565b6131cc602083018461262a565b9392505050565b7f54726164696e67206973206e6f74206f70656e000000000000000000000000005f82015250565b5f613207601383612420565b9150613212826131d3565b602082019050919050565b5f6020820190508181035f830152613234816131fb565b9050919050565b5f6132458261251e565b91506132508361251e565b925082820261325e8161251e565b9150828204841483151761327557613274612863565b5b5092915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6132d6602583612420565b91506132e18261327c565b604082019050919050565b5f6020820190508181035f830152613303816132ca565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613364602383612420565b915061336f8261330a565b604082019050919050565b5f6020820190508181035f83015261339181613358565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133f2602683612420565b91506133fd82613398565b604082019050919050565b5f6020820190508181035f83015261341f816133e6565b905091905056fea26469706673582212205ae96dd9cd9665bc2a997884c75c963ebe365984d2a3cfafd295d2927a4ef5ee64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002bb7bc10120207bc184cafcdba2195477dca64e9000000000000000000000000c2153ad75534876ccf6797f92846ec32c20a8249
-----Decoded View---------------
Arg [0] : _dividendTracker (address): 0x2bB7bc10120207bc184cAFcDbA2195477DCa64E9
Arg [1] : _treasury (address): 0xc2153AD75534876ccF6797f92846EC32C20a8249
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000002bb7bc10120207bc184cafcdba2195477dca64e9
Arg [1] : 000000000000000000000000c2153ad75534876ccf6797f92846ec32c20a8249
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.