ERC-20
Overview
Max Total Supply
1,000,000,000 SPLT
Holders
135
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000013780524 SPLTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SplitX
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.20; /* ****************************************************** * ███████╗██████╗ ██╗ ██╗████████╗██╗ ██╗ * * ██╔════╝██╔══██╗██║ ██║╚══██╔══╝╚██╗██╔╝ * * ███████╗██████╔╝██║ ██║ ██║ ╚███╔╝ * * ╚════██║██╔═══╝ ██║ ██║ ██║ ██╔██╗ * * ███████║██║ ███████╗██║ ██║ ██╔╝ ██╗ * * ╚══════╝╚═╝ ╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═╝ * ****************************************************** Docs: https://splitx.gitbook.io/project-overview/ Telegram: https://t.me/SplitX_Portal Website: https://www.splitx.finance/ App: https://app.splitx.finance/ Twitter: https://twitter.com/splitXFinance */ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract SplitX is ERC20("Splitx", "SPLT"), Ownable { IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 public constant UNISWAP_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable UNISWAP_V2_PAIR; uint256 constant TOTAL_SUPPLY = 1_000_000_000 ether; uint256 public tradingOpenedOnBlock; bool private swapping; address public treasuryWallet; bool public limitsInEffect = true; bool public tradingActive; bool public swapEnabled; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; uint256 public tokenSwapThreshold; uint256 public buyTotalFees; uint256 public sellTotalFees; uint256 public taxedTokens; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; constructor(){ _mint(msg.sender, TOTAL_SUPPLY); _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0)); _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true); UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair( address(this), UNISWAP_ROUTER.WETH() ); maxBuyAmount = (totalSupply() * 15) / 1_000; maxSellAmount = (totalSupply() * 15) / 1_000; maxWalletAmount = (totalSupply() * 15) / 1_000; tokenSwapThreshold = (totalSupply() * 50) / 10_000; // 0.5% swapToEth threshold treasuryWallet = msg.sender; _excludeFromMaxTransaction(msg.sender, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); } receive() external payable {} function updateMaxBuyAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "Cannot set max buy amount lower than 0.1%" ); maxBuyAmount = newNum; } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "Cannot set max sell amount lower than 0.1%" ); maxSellAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 3) / 1_000), "Cannot set max wallet amount lower than 0.3%" ); maxWalletAmount = newNum; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "Swap amount cannot be lower than 0.001% total supply." ); tokenSwapThreshold = newAmount; } function removeLimits() external onlyOwner { limitsInEffect = false; } function _excludeFromMaxTransaction( address updAds, bool isExcluded ) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function updateTaxRates( uint256 _newBuyFee, uint256 _newSellFee ) external onlyOwner { buyTotalFees = _newBuyFee; sellTotalFees = _newSellFee; } function openTrading() public onlyOwner { require(tradingOpenedOnBlock == 0, "Token state is already live !"); tradingOpenedOnBlock = block.number; tradingActive = true; swapEnabled = true; } function setTreasuryWallet(address _treasuryWallet) external onlyOwner { require(_treasuryWallet != address(0), "_treasuryWallet address cannot be 0"); treasuryWallet = payable(_treasuryWallet); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "Trading is not active." ); require(from == owner(), "Trading is enabled"); } //when buy if ( from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet" ); } //when sell else if ( to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxSellAmount, "Sell transfer amount exceeds the max sell." ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= tokenSwapThreshold; if ( canSwap && swapEnabled && !swapping && !(from == UNISWAP_V2_PAIR) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { // Sell if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; taxedTokens += fees; } // Buy else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; taxedTokens += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTER.WETH(); // make the swap UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = taxedTokens; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > tokenSwapThreshold) { contractBalance = tokenSwapThreshold; } bool success; swapTokensForEth(contractBalance); (success, ) = address(treasuryWallet).call{value: address(this).balance}(""); } function withdrawStuckToken(address _token) external onlyOwner{ ERC20 erc20token = ERC20(_token); uint256 balance = erc20token.balanceOf(address(this)); erc20token.transfer(owner(), balance); } function withdrawStuckEth() external onlyOwner { (bool success, ) = owner().call{value: address(this).balance}(""); require(success, "failed to withdraw funds"); } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","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":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyFee","type":"uint256"},{"internalType":"uint256","name":"_newSellFee","type":"uint256"}],"name":"updateTaxRates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600760156101000a81548160ff0219169083151502179055503480156200002b575f80fd5b506040518060400160405280600681526020017f53706c69747800000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53504c54000000000000000000000000000000000000000000000000000000008152508160039081620000a9919062000c08565b508060049081620000bb919062000c08565b505050620000de620000d26200041e60201b60201c565b6200042560201b60201c565b620000fc336b033b2e3c9fd0803ce8000000620004e860201b60201c565b6200012430737a250d5630b4cf539739df2c5dacb4c659f2488d5f196200064d60201b60201c565b6200014b737a250d5630b4cf539739df2c5dacb4c659f2488d60016200081860201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001da573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000200919062000d51565b6040518363ffffffff1660e01b81526004016200021f92919062000d92565b6020604051808303815f875af11580156200023c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000262919062000d51565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e8600f620002aa6200087060201b60201c565b620002b6919062000dea565b620002c2919062000e61565b6008819055506103e8600f620002dd6200087060201b60201c565b620002e9919062000dea565b620002f5919062000e61565b6009819055506103e8600f620003106200087060201b60201c565b6200031c919062000dea565b62000328919062000e61565b600a819055506127106032620003436200087060201b60201c565b6200034f919062000dea565b6200035b919062000e61565b600b8190555033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003b53360016200081860201b60201c565b620003c83060016200081860201b60201c565b620003dd61dead60016200081860201b60201c565b620003f03360016200087960201b60201c565b620004033060016200087960201b60201c565b6200041861dead60016200087960201b60201c565b62001112565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000559576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005509062000ef6565b60405180910390fd5b6200056c5f8383620008e160201b60201c565b8060025f8282546200057f919062000f16565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200062e919062000f61565b60405180910390a3620006495f8383620008e660201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b59062000ff0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200072f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007269062001084565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516200080b919062000f61565b60405180910390a3505050565b8060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f600254905090565b62000889620008eb60201b60201c565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b505050565b505050565b620008fb6200041e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009216200097c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200097a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200097190620010f2565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000a2057607f821691505b60208210810362000a365762000a35620009db565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000a9a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a5d565b62000aa6868362000a5d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000af062000aea62000ae48462000abe565b62000ac7565b62000abe565b9050919050565b5f819050919050565b62000b0b8362000ad0565b62000b2362000b1a8262000af7565b84845462000a69565b825550505050565b5f90565b62000b3962000b2b565b62000b4681848462000b00565b505050565b5b8181101562000b6d5762000b615f8262000b2f565b60018101905062000b4c565b5050565b601f82111562000bbc5762000b868162000a3c565b62000b918462000a4e565b8101602085101562000ba1578190505b62000bb962000bb08562000a4e565b83018262000b4b565b50505b505050565b5f82821c905092915050565b5f62000bde5f198460080262000bc1565b1980831691505092915050565b5f62000bf8838362000bcd565b9150826002028217905092915050565b62000c1382620009a4565b67ffffffffffffffff81111562000c2f5762000c2e620009ae565b5b62000c3b825462000a08565b62000c4882828562000b71565b5f60209050601f83116001811462000c7e575f841562000c69578287015190505b62000c75858262000beb565b86555062000ce4565b601f19841662000c8e8662000a3c565b5f5b8281101562000cb75784890151825560018201915060208501945060208101905062000c90565b8683101562000cd7578489015162000cd3601f89168262000bcd565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000d1b8262000cf0565b9050919050565b62000d2d8162000d0f565b811462000d38575f80fd5b50565b5f8151905062000d4b8162000d22565b92915050565b5f6020828403121562000d695762000d6862000cec565b5b5f62000d788482850162000d3b565b91505092915050565b62000d8c8162000d0f565b82525050565b5f60408201905062000da75f83018562000d81565b62000db6602083018462000d81565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000df68262000abe565b915062000e038362000abe565b925082820262000e138162000abe565b9150828204841483151762000e2d5762000e2c62000dbd565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000e6d8262000abe565b915062000e7a8362000abe565b92508262000e8d5762000e8c62000e34565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ede601f8362000e98565b915062000eeb8262000ea8565b602082019050919050565b5f6020820190508181035f83015262000f0f8162000ed0565b9050919050565b5f62000f228262000abe565b915062000f2f8362000abe565b925082820190508082111562000f4a5762000f4962000dbd565b5b92915050565b62000f5b8162000abe565b82525050565b5f60208201905062000f765f83018462000f50565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f62000fd860248362000e98565b915062000fe58262000f7c565b604082019050919050565b5f6020820190508181035f830152620010098162000fca565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200106c60228362000e98565b9150620010798262001010565b604082019050919050565b5f6020820190508181035f8301526200109d816200105e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f620010da60208362000e98565b9150620010e782620010a4565b602082019050919050565b5f6020820190508181035f8301526200110b81620010cc565b9050919050565b608051613ab26200114e5f395f818161136d015281816119e801528181611b3101528181611d6f01528181611f570152611ff10152613ab25ff3fe608060405260043610610249575f3560e01c80637fa787ba11610138578063c0246668116100b5578063d826492011610079578063d826492014610832578063d85ba0631461085c578063dc3f0d0f14610886578063dd62ed3e146108ae578063f2fde38b146108ea578063f40acc3d1461091257610250565b8063c02466681461077a578063c18bc195146107a2578063c74c0fac146107ca578063c9567bf9146107f4578063d257b34f1461080a57610250565b8063a8602fea116100fc578063a8602fea1461069a578063a9059cbb146106c2578063aa4bde28146106fe578063ab6a8b1c14610728578063bbc0c7421461075057610250565b80637fa787ba146105ca57806388e765ff146105e05780638da5cb5b1461060a57806395d89b4114610634578063a457c2d71461065e57610250565b806339509351116101c65780636ddd17131161018a5780636ddd17131461050e57806370a0823114610538578063715018a614610574578063751039fc1461058a57806376d628b7146105a057610250565b8063395093511461042a5780634626402b146104665780634a62bb651461049057806366d602ae146104ba5780636a486a8e146104e457610250565b806310d5de531161020d57806310d5de531461033657806318160ddd1461037257806323b872dd1461039c5780632be32b61146103d8578063313ce5671461040057610250565b8063068acf6c1461025457806306fdde031461027c578063095ea7b3146102a65780630a3b39a3146102e25780630e3000991461030c57610250565b3661025057005b5f80fd5b34801561025f575f80fd5b5061027a6004803603810190610275919061271a565b61093c565b005b348015610287575f80fd5b50610290610a4b565b60405161029d91906127cf565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c79190612822565b610adb565b6040516102d9919061287a565b60405180910390f35b3480156102ed575f80fd5b506102f6610afd565b60405161030391906128a2565b60405180910390f35b348015610317575f80fd5b50610320610b03565b60405161032d91906128a2565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061271a565b610b09565b604051610369919061287a565b60405180910390f35b34801561037d575f80fd5b50610386610b26565b60405161039391906128a2565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd91906128bb565b610b2f565b6040516103cf919061287a565b60405180910390f35b3480156103e3575f80fd5b506103fe60048036038101906103f9919061290b565b610b5d565b005b34801561040b575f80fd5b50610414610bd2565b6040516104219190612951565b60405180910390f35b348015610435575f80fd5b50610450600480360381019061044b9190612822565b610bda565b60405161045d919061287a565b60405180910390f35b348015610471575f80fd5b5061047a610c10565b6040516104879190612979565b60405180910390f35b34801561049b575f80fd5b506104a4610c36565b6040516104b1919061287a565b60405180910390f35b3480156104c5575f80fd5b506104ce610c49565b6040516104db91906128a2565b60405180910390f35b3480156104ef575f80fd5b506104f8610c4f565b60405161050591906128a2565b60405180910390f35b348015610519575f80fd5b50610522610c55565b60405161052f919061287a565b60405180910390f35b348015610543575f80fd5b5061055e6004803603810190610559919061271a565b610c68565b60405161056b91906128a2565b60405180910390f35b34801561057f575f80fd5b50610588610cad565b005b348015610595575f80fd5b5061059e610cc0565b005b3480156105ab575f80fd5b506105b4610ce4565b6040516105c191906128a2565b60405180910390f35b3480156105d5575f80fd5b506105de610cea565b005b3480156105eb575f80fd5b506105f4610da4565b60405161060191906128a2565b60405180910390f35b348015610615575f80fd5b5061061e610daa565b60405161062b9190612979565b60405180910390f35b34801561063f575f80fd5b50610648610dd2565b60405161065591906127cf565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f9190612822565b610e62565b604051610691919061287a565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb919061271a565b610ed7565b005b3480156106cd575f80fd5b506106e860048036038101906106e39190612822565b610f91565b6040516106f5919061287a565b60405180910390f35b348015610709575f80fd5b50610712610fb3565b60405161071f91906128a2565b60405180910390f35b348015610733575f80fd5b5061074e60048036038101906107499190612992565b610fb9565b005b34801561075b575f80fd5b50610764610fd3565b604051610771919061287a565b60405180910390f35b348015610785575f80fd5b506107a0600480360381019061079b91906129fa565b610fe6565b005b3480156107ad575f80fd5b506107c860048036038101906107c3919061290b565b611046565b005b3480156107d5575f80fd5b506107de6110bb565b6040516107eb9190612a93565b60405180910390f35b3480156107ff575f80fd5b506108086110d3565b005b348015610815575f80fd5b50610830600480360381019061082b919061290b565b61115e565b005b34801561083d575f80fd5b506108466111d4565b6040516108539190612acc565b60405180910390f35b348015610867575f80fd5b506108706111ec565b60405161087d91906128a2565b60405180910390f35b348015610891575f80fd5b506108ac60048036038101906108a7919061290b565b6111f2565b005b3480156108b9575f80fd5b506108d460048036038101906108cf9190612ae5565b611267565b6040516108e191906128a2565b60405180910390f35b3480156108f5575f80fd5b50610910600480360381019061090b919061271a565b6112e9565b005b34801561091d575f80fd5b5061092661136b565b6040516109339190612979565b60405180910390f35b61094461138f565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109829190612979565b602060405180830381865afa15801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190612b37565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109e7610daa565b836040518363ffffffff1660e01b8152600401610a05929190612b62565b6020604051808303815f875af1158015610a21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a459190612b9d565b50505050565b606060038054610a5a90612bf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8690612bf5565b8015610ad15780601f10610aa857610100808354040283529160200191610ad1565b820191905f5260205f20905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b5f80610ae561140d565b9050610af2818585611414565b600191505092915050565b60065481565b600b5481565b6010602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610b3961140d565b9050610b468582856115d7565b610b51858585611662565b60019150509392505050565b610b6561138f565b6103e86001610b72610b26565b610b7c9190612c52565b610b869190612cc0565b811015610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90612d60565b60405180910390fd5b8060088190555050565b5f6012905090565b5f80610be461140d565b9050610c05818585610bf68589611267565b610c009190612d7e565b611414565b600191505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760159054906101000a900460ff1681565b60095481565b600d5481565b600760179054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cb561138f565b610cbe5f6120bd565b565b610cc861138f565b5f600760156101000a81548160ff021916908315150217905550565b600e5481565b610cf261138f565b5f610cfb610daa565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1e90612dde565b5f6040518083038185875af1925050503d805f8114610d58576040519150601f19603f3d011682016040523d82523d5f602084013e610d5d565b606091505b5050905080610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890612e3c565b60405180910390fd5b50565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610de190612bf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0d90612bf5565b8015610e585780601f10610e2f57610100808354040283529160200191610e58565b820191905f5260205f20905b815481529060010190602001808311610e3b57829003601f168201915b5050505050905090565b5f80610e6c61140d565b90505f610e798286611267565b905083811015610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612eca565b60405180910390fd5b610ecb8286868403611414565b60019250505092915050565b610edf61138f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612f58565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f9b61140d565b9050610fa8818585611662565b600191505092915050565b600a5481565b610fc161138f565b81600c8190555080600d819055505050565b600760169054906101000a900460ff1681565b610fee61138f565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61104e61138f565b6103e8600361105b610b26565b6110659190612c52565b61106f9190612cc0565b8110156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890612fe6565b60405180910390fd5b80600a8190555050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6110db61138f565b5f6006541461111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061304e565b60405180910390fd5b436006819055506001600760166101000a81548160ff0219169083151502179055506001600760176101000a81548160ff021916908315150217905550565b61116661138f565b620186a06001611174610b26565b61117e9190612c52565b6111889190612cc0565b8110156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c1906130dc565b60405180910390fd5b80600b8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5481565b6111fa61138f565b6103e86001611207610b26565b6112119190612c52565b61121b9190612cc0565b81101561125d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112549061316a565b60405180910390fd5b8060098190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112f161138f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906131f8565b60405180910390fd5b611368816120bd565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b61139761140d565b73ffffffffffffffffffffffffffffffffffffffff166113b5610daa565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613260565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906132ee565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061337c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115ca91906128a2565b60405180910390a3505050565b5f6115e28484611267565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461165c578181101561164e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611645906133e4565b60405180910390fd5b61165b8484848403611414565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613472565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613500565b60405180910390fd5b5f8111611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790613568565b60405180910390fd5b600760159054906101000a900460ff1615611d205761179d610daa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561180b57506117db610daa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561184357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561187d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611d1f57600760169054906101000a900460ff166119e65760105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611931575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611967906135d0565b60405180910390fd5b611978610daa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613638565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a88575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b2f57600854811115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac9906136c6565b60405180910390fd5b600a54611ade83610c68565b82611ae99190612d7e565b1115611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b219061372e565b60405180910390fd5b611d1e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611bd1575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c2057600954811115611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c12906137bc565b60405180910390fd5b611d1d565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611cbe575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d1c57600a54611ccf83610c68565b82611cda9190612d7e565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d129061372e565b60405180910390fd5b5b5b5b5b5b5f611d2a30610c68565b90505f600b548210159050808015611d4e5750600760179054906101000a900460ff165b8015611d66575060075f9054906101000a900460ff16155b8015611dbe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e115750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e645750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ea557600160075f6101000a81548160ff021916908315150217905550611e8b612180565b5f60075f6101000a81548160ff0219169083151502179055505b5f60019050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f455750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611f4e575f90505b5f81156120a9577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611fb157505f600d54115b15611fef576064600d5486611fc69190612c52565b611fd09190612cc0565b905080600e5f828254611fe39190612d7e565b92505081905550612086565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561204b57505f600c54115b15612085576064600c54866120609190612c52565b61206a9190612cc0565b905080600e5f82825461207d9190612d7e565b925050819055505b5b5f81111561209a57612099873083612256565b5b80856120a691906137da565b94505b6120b4878787612256565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61218a30610c68565b90505f600e5490505f82148061219f57505f81145b156121ab575050612254565b600b548211156121bb57600b5491505b5f6121c5836124c2565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161220b90612dde565b5f6040518083038185875af1925050503d805f8114612245576040519150601f19603f3d011682016040523d82523d5f602084013e61224a565b606091505b5050809150505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90613472565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990613500565b60405180910390fd5b61233d8383836126b2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b79061387d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124a991906128a2565b60405180910390a36124bc8484846126b7565b50505050565b5f600267ffffffffffffffff8111156124de576124dd61389b565b5b60405190808252806020026020018201604052801561250c5781602001602082028036833780820191505090505b50905030815f81518110612523576125226138c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125de9190613909565b816001815181106125f2576125f16138c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612681959493929190613a24565b5f604051808303815f87803b158015612698575f80fd5b505af11580156126aa573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126e9826126c0565b9050919050565b6126f9816126df565b8114612703575f80fd5b50565b5f81359050612714816126f0565b92915050565b5f6020828403121561272f5761272e6126bc565b5b5f61273c84828501612706565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561277c578082015181840152602081019050612761565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6127a182612745565b6127ab818561274f565b93506127bb81856020860161275f565b6127c481612787565b840191505092915050565b5f6020820190508181035f8301526127e78184612797565b905092915050565b5f819050919050565b612801816127ef565b811461280b575f80fd5b50565b5f8135905061281c816127f8565b92915050565b5f8060408385031215612838576128376126bc565b5b5f61284585828601612706565b92505060206128568582860161280e565b9150509250929050565b5f8115159050919050565b61287481612860565b82525050565b5f60208201905061288d5f83018461286b565b92915050565b61289c816127ef565b82525050565b5f6020820190506128b55f830184612893565b92915050565b5f805f606084860312156128d2576128d16126bc565b5b5f6128df86828701612706565b93505060206128f086828701612706565b92505060406129018682870161280e565b9150509250925092565b5f602082840312156129205761291f6126bc565b5b5f61292d8482850161280e565b91505092915050565b5f60ff82169050919050565b61294b81612936565b82525050565b5f6020820190506129645f830184612942565b92915050565b612973816126df565b82525050565b5f60208201905061298c5f83018461296a565b92915050565b5f80604083850312156129a8576129a76126bc565b5b5f6129b58582860161280e565b92505060206129c68582860161280e565b9150509250929050565b6129d981612860565b81146129e3575f80fd5b50565b5f813590506129f4816129d0565b92915050565b5f8060408385031215612a1057612a0f6126bc565b5b5f612a1d85828601612706565b9250506020612a2e858286016129e6565b9150509250929050565b5f819050919050565b5f612a5b612a56612a51846126c0565b612a38565b6126c0565b9050919050565b5f612a6c82612a41565b9050919050565b5f612a7d82612a62565b9050919050565b612a8d81612a73565b82525050565b5f602082019050612aa65f830184612a84565b92915050565b5f612ab682612a62565b9050919050565b612ac681612aac565b82525050565b5f602082019050612adf5f830184612abd565b92915050565b5f8060408385031215612afb57612afa6126bc565b5b5f612b0885828601612706565b9250506020612b1985828601612706565b9150509250929050565b5f81519050612b31816127f8565b92915050565b5f60208284031215612b4c57612b4b6126bc565b5b5f612b5984828501612b23565b91505092915050565b5f604082019050612b755f83018561296a565b612b826020830184612893565b9392505050565b5f81519050612b97816129d0565b92915050565b5f60208284031215612bb257612bb16126bc565b5b5f612bbf84828501612b89565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c0c57607f821691505b602082108103612c1f57612c1e612bc8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c5c826127ef565b9150612c67836127ef565b9250828202612c75816127ef565b91508282048414831517612c8c57612c8b612c25565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612cca826127ef565b9150612cd5836127ef565b925082612ce557612ce4612c93565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f612d4a60298361274f565b9150612d5582612cf0565b604082019050919050565b5f6020820190508181035f830152612d7781612d3e565b9050919050565b5f612d88826127ef565b9150612d93836127ef565b9250828201905080821115612dab57612daa612c25565b5b92915050565b5f81905092915050565b50565b5f612dc95f83612db1565b9150612dd482612dbb565b5f82019050919050565b5f612de882612dbe565b9150819050919050565b7f6661696c656420746f2077697468647261772066756e647300000000000000005f82015250565b5f612e2660188361274f565b9150612e3182612df2565b602082019050919050565b5f6020820190508181035f830152612e5381612e1a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612eb460258361274f565b9150612ebf82612e5a565b604082019050919050565b5f6020820190508181035f830152612ee181612ea8565b9050919050565b7f5f747265617375727957616c6c657420616464726573732063616e6e6f7420625f8201527f6520300000000000000000000000000000000000000000000000000000000000602082015250565b5f612f4260238361274f565b9150612f4d82612ee8565b604082019050919050565b5f6020820190508181035f830152612f6f81612f36565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f775f8201527f6572207468616e20302e33250000000000000000000000000000000000000000602082015250565b5f612fd0602c8361274f565b9150612fdb82612f76565b604082019050919050565b5f6020820190508181035f830152612ffd81612fc4565b9050919050565b7f546f6b656e20737461746520697320616c7265616479206c69766520210000005f82015250565b5f613038601d8361274f565b915061304382613004565b602082019050919050565b5f6020820190508181035f8301526130658161302c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6130c660358361274f565b91506130d18261306c565b604082019050919050565b5f6020820190508181035f8301526130f3816130ba565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f7765725f8201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b5f613154602a8361274f565b915061315f826130fa565b604082019050919050565b5f6020820190508181035f83015261318181613148565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6131e260268361274f565b91506131ed82613188565b604082019050919050565b5f6020820190508181035f83015261320f816131d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61324a60208361274f565b915061325582613216565b602082019050919050565b5f6020820190508181035f8301526132778161323e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6132d860248361274f565b91506132e38261327e565b604082019050919050565b5f6020820190508181035f830152613305816132cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61336660228361274f565b91506133718261330c565b604082019050919050565b5f6020820190508181035f8301526133938161335a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6133ce601d8361274f565b91506133d98261339a565b602082019050919050565b5f6020820190508181035f8301526133fb816133c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61345c60258361274f565b915061346782613402565b604082019050919050565b5f6020820190508181035f83015261348981613450565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6134ea60238361274f565b91506134f582613490565b604082019050919050565b5f6020820190508181035f830152613517816134de565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613552601d8361274f565b915061355d8261351e565b602082019050919050565b5f6020820190508181035f83015261357f81613546565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6135ba60168361274f565b91506135c582613586565b602082019050919050565b5f6020820190508181035f8301526135e7816135ae565b9050919050565b7f54726164696e6720697320656e61626c656400000000000000000000000000005f82015250565b5f61362260128361274f565b915061362d826135ee565b602082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b5f6136b060288361274f565b91506136bb82613656565b604082019050919050565b5f6020820190508181035f8301526136dd816136a4565b9050919050565b7f43616e6e6f7420457863656564206d61782077616c6c657400000000000000005f82015250565b5f61371860188361274f565b9150613723826136e4565b602082019050919050565b5f6020820190508181035f8301526137458161370c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b5f6137a6602a8361274f565b91506137b18261374c565b604082019050919050565b5f6020820190508181035f8301526137d38161379a565b9050919050565b5f6137e4826127ef565b91506137ef836127ef565b925082820390508181111561380757613806612c25565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61386760268361274f565b91506138728261380d565b604082019050919050565b5f6020820190508181035f8301526138948161385b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613903816126f0565b92915050565b5f6020828403121561391e5761391d6126bc565b5b5f61392b848285016138f5565b91505092915050565b5f819050919050565b5f61395761395261394d84613934565b612a38565b6127ef565b9050919050565b6139678161393d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61399f816126df565b82525050565b5f6139b08383613996565b60208301905092915050565b5f602082019050919050565b5f6139d28261396d565b6139dc8185613977565b93506139e783613987565b805f5b83811015613a175781516139fe88826139a5565b9750613a09836139bc565b9250506001810190506139ea565b5085935050505092915050565b5f60a082019050613a375f830188612893565b613a44602083018761395e565b8181036040830152613a5681866139c8565b9050613a65606083018561296a565b613a726080830184612893565b969550505050505056fea2646970667358221220635ac8b76abef43575a586528955e575fc4af7e07f693d236597c2966dee657c64736f6c63430008140033
Deployed Bytecode
0x608060405260043610610249575f3560e01c80637fa787ba11610138578063c0246668116100b5578063d826492011610079578063d826492014610832578063d85ba0631461085c578063dc3f0d0f14610886578063dd62ed3e146108ae578063f2fde38b146108ea578063f40acc3d1461091257610250565b8063c02466681461077a578063c18bc195146107a2578063c74c0fac146107ca578063c9567bf9146107f4578063d257b34f1461080a57610250565b8063a8602fea116100fc578063a8602fea1461069a578063a9059cbb146106c2578063aa4bde28146106fe578063ab6a8b1c14610728578063bbc0c7421461075057610250565b80637fa787ba146105ca57806388e765ff146105e05780638da5cb5b1461060a57806395d89b4114610634578063a457c2d71461065e57610250565b806339509351116101c65780636ddd17131161018a5780636ddd17131461050e57806370a0823114610538578063715018a614610574578063751039fc1461058a57806376d628b7146105a057610250565b8063395093511461042a5780634626402b146104665780634a62bb651461049057806366d602ae146104ba5780636a486a8e146104e457610250565b806310d5de531161020d57806310d5de531461033657806318160ddd1461037257806323b872dd1461039c5780632be32b61146103d8578063313ce5671461040057610250565b8063068acf6c1461025457806306fdde031461027c578063095ea7b3146102a65780630a3b39a3146102e25780630e3000991461030c57610250565b3661025057005b5f80fd5b34801561025f575f80fd5b5061027a6004803603810190610275919061271a565b61093c565b005b348015610287575f80fd5b50610290610a4b565b60405161029d91906127cf565b60405180910390f35b3480156102b1575f80fd5b506102cc60048036038101906102c79190612822565b610adb565b6040516102d9919061287a565b60405180910390f35b3480156102ed575f80fd5b506102f6610afd565b60405161030391906128a2565b60405180910390f35b348015610317575f80fd5b50610320610b03565b60405161032d91906128a2565b60405180910390f35b348015610341575f80fd5b5061035c6004803603810190610357919061271a565b610b09565b604051610369919061287a565b60405180910390f35b34801561037d575f80fd5b50610386610b26565b60405161039391906128a2565b60405180910390f35b3480156103a7575f80fd5b506103c260048036038101906103bd91906128bb565b610b2f565b6040516103cf919061287a565b60405180910390f35b3480156103e3575f80fd5b506103fe60048036038101906103f9919061290b565b610b5d565b005b34801561040b575f80fd5b50610414610bd2565b6040516104219190612951565b60405180910390f35b348015610435575f80fd5b50610450600480360381019061044b9190612822565b610bda565b60405161045d919061287a565b60405180910390f35b348015610471575f80fd5b5061047a610c10565b6040516104879190612979565b60405180910390f35b34801561049b575f80fd5b506104a4610c36565b6040516104b1919061287a565b60405180910390f35b3480156104c5575f80fd5b506104ce610c49565b6040516104db91906128a2565b60405180910390f35b3480156104ef575f80fd5b506104f8610c4f565b60405161050591906128a2565b60405180910390f35b348015610519575f80fd5b50610522610c55565b60405161052f919061287a565b60405180910390f35b348015610543575f80fd5b5061055e6004803603810190610559919061271a565b610c68565b60405161056b91906128a2565b60405180910390f35b34801561057f575f80fd5b50610588610cad565b005b348015610595575f80fd5b5061059e610cc0565b005b3480156105ab575f80fd5b506105b4610ce4565b6040516105c191906128a2565b60405180910390f35b3480156105d5575f80fd5b506105de610cea565b005b3480156105eb575f80fd5b506105f4610da4565b60405161060191906128a2565b60405180910390f35b348015610615575f80fd5b5061061e610daa565b60405161062b9190612979565b60405180910390f35b34801561063f575f80fd5b50610648610dd2565b60405161065591906127cf565b60405180910390f35b348015610669575f80fd5b50610684600480360381019061067f9190612822565b610e62565b604051610691919061287a565b60405180910390f35b3480156106a5575f80fd5b506106c060048036038101906106bb919061271a565b610ed7565b005b3480156106cd575f80fd5b506106e860048036038101906106e39190612822565b610f91565b6040516106f5919061287a565b60405180910390f35b348015610709575f80fd5b50610712610fb3565b60405161071f91906128a2565b60405180910390f35b348015610733575f80fd5b5061074e60048036038101906107499190612992565b610fb9565b005b34801561075b575f80fd5b50610764610fd3565b604051610771919061287a565b60405180910390f35b348015610785575f80fd5b506107a0600480360381019061079b91906129fa565b610fe6565b005b3480156107ad575f80fd5b506107c860048036038101906107c3919061290b565b611046565b005b3480156107d5575f80fd5b506107de6110bb565b6040516107eb9190612a93565b60405180910390f35b3480156107ff575f80fd5b506108086110d3565b005b348015610815575f80fd5b50610830600480360381019061082b919061290b565b61115e565b005b34801561083d575f80fd5b506108466111d4565b6040516108539190612acc565b60405180910390f35b348015610867575f80fd5b506108706111ec565b60405161087d91906128a2565b60405180910390f35b348015610891575f80fd5b506108ac60048036038101906108a7919061290b565b6111f2565b005b3480156108b9575f80fd5b506108d460048036038101906108cf9190612ae5565b611267565b6040516108e191906128a2565b60405180910390f35b3480156108f5575f80fd5b50610910600480360381019061090b919061271a565b6112e9565b005b34801561091d575f80fd5b5061092661136b565b6040516109339190612979565b60405180910390f35b61094461138f565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016109829190612979565b602060405180830381865afa15801561099d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109c19190612b37565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6109e7610daa565b836040518363ffffffff1660e01b8152600401610a05929190612b62565b6020604051808303815f875af1158015610a21573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a459190612b9d565b50505050565b606060038054610a5a90612bf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8690612bf5565b8015610ad15780601f10610aa857610100808354040283529160200191610ad1565b820191905f5260205f20905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b5f80610ae561140d565b9050610af2818585611414565b600191505092915050565b60065481565b600b5481565b6010602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b5f80610b3961140d565b9050610b468582856115d7565b610b51858585611662565b60019150509392505050565b610b6561138f565b6103e86001610b72610b26565b610b7c9190612c52565b610b869190612cc0565b811015610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90612d60565b60405180910390fd5b8060088190555050565b5f6012905090565b5f80610be461140d565b9050610c05818585610bf68589611267565b610c009190612d7e565b611414565b600191505092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600760159054906101000a900460ff1681565b60095481565b600d5481565b600760179054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610cb561138f565b610cbe5f6120bd565b565b610cc861138f565b5f600760156101000a81548160ff021916908315150217905550565b600e5481565b610cf261138f565b5f610cfb610daa565b73ffffffffffffffffffffffffffffffffffffffff1647604051610d1e90612dde565b5f6040518083038185875af1925050503d805f8114610d58576040519150601f19603f3d011682016040523d82523d5f602084013e610d5d565b606091505b5050905080610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890612e3c565b60405180910390fd5b50565b60085481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610de190612bf5565b80601f0160208091040260200160405190810160405280929190818152602001828054610e0d90612bf5565b8015610e585780601f10610e2f57610100808354040283529160200191610e58565b820191905f5260205f20905b815481529060010190602001808311610e3b57829003601f168201915b5050505050905090565b5f80610e6c61140d565b90505f610e798286611267565b905083811015610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590612eca565b60405180910390fd5b610ecb8286868403611414565b60019250505092915050565b610edf61138f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610f4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4490612f58565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f80610f9b61140d565b9050610fa8818585611662565b600191505092915050565b600a5481565b610fc161138f565b81600c8190555080600d819055505050565b600760169054906101000a900460ff1681565b610fee61138f565b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b61104e61138f565b6103e8600361105b610b26565b6110659190612c52565b61106f9190612cc0565b8110156110b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a890612fe6565b60405180910390fd5b80600a8190555050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b6110db61138f565b5f6006541461111f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111169061304e565b60405180910390fd5b436006819055506001600760166101000a81548160ff0219169083151502179055506001600760176101000a81548160ff021916908315150217905550565b61116661138f565b620186a06001611174610b26565b61117e9190612c52565b6111889190612cc0565b8110156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c1906130dc565b60405180910390fd5b80600b8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600c5481565b6111fa61138f565b6103e86001611207610b26565b6112119190612c52565b61121b9190612cc0565b81101561125d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112549061316a565b60405180910390fd5b8060098190555050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6112f161138f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361135f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611356906131f8565b60405180910390fd5b611368816120bd565b50565b7f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee781565b61139761140d565b73ffffffffffffffffffffffffffffffffffffffff166113b5610daa565b73ffffffffffffffffffffffffffffffffffffffff161461140b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140290613260565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611482576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611479906132ee565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061337c565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115ca91906128a2565b60405180910390a3505050565b5f6115e28484611267565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461165c578181101561164e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611645906133e4565b60405180910390fd5b61165b8484848403611414565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613472565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361173e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173590613500565b60405180910390fd5b5f8111611780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177790613568565b60405180910390fd5b600760159054906101000a900460ff1615611d205761179d610daa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561180b57506117db610daa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561184357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561187d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611d1f57600760169054906101000a900460ff166119e65760105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611931575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611970576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611967906135d0565b60405180910390fd5b611978610daa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146119e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119dc90613638565b60405180910390fd5b5b7f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611a88575060105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611b2f57600854811115611ad2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac9906136c6565b60405180910390fd5b600a54611ade83610c68565b82611ae99190612d7e565b1115611b2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b219061372e565b60405180910390fd5b611d1e565b7f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015611bd1575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611c2057600954811115611c1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c12906137bc565b60405180910390fd5b611d1d565b60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611cbe575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611d1c57600a54611ccf83610c68565b82611cda9190612d7e565b1115611d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d129061372e565b60405180910390fd5b5b5b5b5b5b5f611d2a30610c68565b90505f600b548210159050808015611d4e5750600760179054906101000a900460ff165b8015611d66575060075f9054906101000a900460ff16155b8015611dbe57507f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015611e115750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015611e645750600f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ea557600160075f6101000a81548160ff021916908315150217905550611e8b612180565b5f60075f6101000a81548160ff0219169083151502179055505b5f60019050600f5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f455750600f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611f4e575f90505b5f81156120a9577f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee773ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611fb157505f600d54115b15611fef576064600d5486611fc69190612c52565b611fd09190612cc0565b905080600e5f828254611fe39190612d7e565b92505081905550612086565b7f0000000000000000000000003f3e881cdf3fa123e972ba219a74b5027d1a5ee773ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614801561204b57505f600c54115b15612085576064600c54866120609190612c52565b61206a9190612cc0565b905080600e5f82825461207d9190612d7e565b925050819055505b5b5f81111561209a57612099873083612256565b5b80856120a691906137da565b94505b6120b4878787612256565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f61218a30610c68565b90505f600e5490505f82148061219f57505f81145b156121ab575050612254565b600b548211156121bb57600b5491505b5f6121c5836124c2565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161220b90612dde565b5f6040518083038185875af1925050503d805f8114612245576040519150601f19603f3d011682016040523d82523d5f602084013e61224a565b606091505b5050809150505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036122c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bb90613472565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990613500565b60405180910390fd5b61233d8383836126b2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156123c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b79061387d565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124a991906128a2565b60405180910390a36124bc8484846126b7565b50505050565b5f600267ffffffffffffffff8111156124de576124dd61389b565b5b60405190808252806020026020018201604052801561250c5781602001602082028036833780820191505090505b50905030815f81518110612523576125226138c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156125ba573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906125de9190613909565b816001815181106125f2576125f16138c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612681959493929190613a24565b5f604051808303815f87803b158015612698575f80fd5b505af11580156126aa573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6126e9826126c0565b9050919050565b6126f9816126df565b8114612703575f80fd5b50565b5f81359050612714816126f0565b92915050565b5f6020828403121561272f5761272e6126bc565b5b5f61273c84828501612706565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561277c578082015181840152602081019050612761565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6127a182612745565b6127ab818561274f565b93506127bb81856020860161275f565b6127c481612787565b840191505092915050565b5f6020820190508181035f8301526127e78184612797565b905092915050565b5f819050919050565b612801816127ef565b811461280b575f80fd5b50565b5f8135905061281c816127f8565b92915050565b5f8060408385031215612838576128376126bc565b5b5f61284585828601612706565b92505060206128568582860161280e565b9150509250929050565b5f8115159050919050565b61287481612860565b82525050565b5f60208201905061288d5f83018461286b565b92915050565b61289c816127ef565b82525050565b5f6020820190506128b55f830184612893565b92915050565b5f805f606084860312156128d2576128d16126bc565b5b5f6128df86828701612706565b93505060206128f086828701612706565b92505060406129018682870161280e565b9150509250925092565b5f602082840312156129205761291f6126bc565b5b5f61292d8482850161280e565b91505092915050565b5f60ff82169050919050565b61294b81612936565b82525050565b5f6020820190506129645f830184612942565b92915050565b612973816126df565b82525050565b5f60208201905061298c5f83018461296a565b92915050565b5f80604083850312156129a8576129a76126bc565b5b5f6129b58582860161280e565b92505060206129c68582860161280e565b9150509250929050565b6129d981612860565b81146129e3575f80fd5b50565b5f813590506129f4816129d0565b92915050565b5f8060408385031215612a1057612a0f6126bc565b5b5f612a1d85828601612706565b9250506020612a2e858286016129e6565b9150509250929050565b5f819050919050565b5f612a5b612a56612a51846126c0565b612a38565b6126c0565b9050919050565b5f612a6c82612a41565b9050919050565b5f612a7d82612a62565b9050919050565b612a8d81612a73565b82525050565b5f602082019050612aa65f830184612a84565b92915050565b5f612ab682612a62565b9050919050565b612ac681612aac565b82525050565b5f602082019050612adf5f830184612abd565b92915050565b5f8060408385031215612afb57612afa6126bc565b5b5f612b0885828601612706565b9250506020612b1985828601612706565b9150509250929050565b5f81519050612b31816127f8565b92915050565b5f60208284031215612b4c57612b4b6126bc565b5b5f612b5984828501612b23565b91505092915050565b5f604082019050612b755f83018561296a565b612b826020830184612893565b9392505050565b5f81519050612b97816129d0565b92915050565b5f60208284031215612bb257612bb16126bc565b5b5f612bbf84828501612b89565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612c0c57607f821691505b602082108103612c1f57612c1e612bc8565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612c5c826127ef565b9150612c67836127ef565b9250828202612c75816127ef565b91508282048414831517612c8c57612c8b612c25565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f612cca826127ef565b9150612cd5836127ef565b925082612ce557612ce4612c93565b5b828204905092915050565b7f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572205f8201527f7468616e20302e31250000000000000000000000000000000000000000000000602082015250565b5f612d4a60298361274f565b9150612d5582612cf0565b604082019050919050565b5f6020820190508181035f830152612d7781612d3e565b9050919050565b5f612d88826127ef565b9150612d93836127ef565b9250828201905080821115612dab57612daa612c25565b5b92915050565b5f81905092915050565b50565b5f612dc95f83612db1565b9150612dd482612dbb565b5f82019050919050565b5f612de882612dbe565b9150819050919050565b7f6661696c656420746f2077697468647261772066756e647300000000000000005f82015250565b5f612e2660188361274f565b9150612e3182612df2565b602082019050919050565b5f6020820190508181035f830152612e5381612e1a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612eb460258361274f565b9150612ebf82612e5a565b604082019050919050565b5f6020820190508181035f830152612ee181612ea8565b9050919050565b7f5f747265617375727957616c6c657420616464726573732063616e6e6f7420625f8201527f6520300000000000000000000000000000000000000000000000000000000000602082015250565b5f612f4260238361274f565b9150612f4d82612ee8565b604082019050919050565b5f6020820190508181035f830152612f6f81612f36565b9050919050565b7f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f775f8201527f6572207468616e20302e33250000000000000000000000000000000000000000602082015250565b5f612fd0602c8361274f565b9150612fdb82612f76565b604082019050919050565b5f6020820190508181035f830152612ffd81612fc4565b9050919050565b7f546f6b656e20737461746520697320616c7265616479206c69766520210000005f82015250565b5f613038601d8361274f565b915061304382613004565b602082019050919050565b5f6020820190508181035f8301526130658161302c565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e5f8201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b5f6130c660358361274f565b91506130d18261306c565b604082019050919050565b5f6020820190508181035f8301526130f3816130ba565b9050919050565b7f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f7765725f8201527f207468616e20302e312500000000000000000000000000000000000000000000602082015250565b5f613154602a8361274f565b915061315f826130fa565b604082019050919050565b5f6020820190508181035f83015261318181613148565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6131e260268361274f565b91506131ed82613188565b604082019050919050565b5f6020820190508181035f83015261320f816131d6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61324a60208361274f565b915061325582613216565b602082019050919050565b5f6020820190508181035f8301526132778161323e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6132d860248361274f565b91506132e38261327e565b604082019050919050565b5f6020820190508181035f830152613305816132cc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61336660228361274f565b91506133718261330c565b604082019050919050565b5f6020820190508181035f8301526133938161335a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f6133ce601d8361274f565b91506133d98261339a565b602082019050919050565b5f6020820190508181035f8301526133fb816133c2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61345c60258361274f565b915061346782613402565b604082019050919050565b5f6020820190508181035f83015261348981613450565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6134ea60238361274f565b91506134f582613490565b604082019050919050565b5f6020820190508181035f830152613517816134de565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613552601d8361274f565b915061355d8261351e565b602082019050919050565b5f6020820190508181035f83015261357f81613546565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f6135ba60168361274f565b91506135c582613586565b602082019050919050565b5f6020820190508181035f8301526135e7816135ae565b9050919050565b7f54726164696e6720697320656e61626c656400000000000000000000000000005f82015250565b5f61362260128361274f565b915061362d826135ee565b602082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d6178206275792e000000000000000000000000000000000000000000000000602082015250565b5f6136b060288361274f565b91506136bb82613656565b604082019050919050565b5f6020820190508181035f8301526136dd816136a4565b9050919050565b7f43616e6e6f7420457863656564206d61782077616c6c657400000000000000005f82015250565b5f61371860188361274f565b9150613723826136e4565b602082019050919050565b5f6020820190508181035f8301526137458161370c565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61782073656c6c2e00000000000000000000000000000000000000000000602082015250565b5f6137a6602a8361274f565b91506137b18261374c565b604082019050919050565b5f6020820190508181035f8301526137d38161379a565b9050919050565b5f6137e4826127ef565b91506137ef836127ef565b925082820390508181111561380757613806612c25565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61386760268361274f565b91506138728261380d565b604082019050919050565b5f6020820190508181035f8301526138948161385b565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050613903816126f0565b92915050565b5f6020828403121561391e5761391d6126bc565b5b5f61392b848285016138f5565b91505092915050565b5f819050919050565b5f61395761395261394d84613934565b612a38565b6127ef565b9050919050565b6139678161393d565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61399f816126df565b82525050565b5f6139b08383613996565b60208301905092915050565b5f602082019050919050565b5f6139d28261396d565b6139dc8185613977565b93506139e783613987565b805f5b83811015613a175781516139fe88826139a5565b9750613a09836139bc565b9250506001810190506139ea565b5085935050505092915050565b5f60a082019050613a375f830188612893565b613a44602083018761395e565b8181036040830152613a5681866139c8565b9050613a65606083018561296a565b613a726080830184612893565b969550505050505056fea2646970667358221220635ac8b76abef43575a586528955e575fc4af7e07f693d236597c2966dee657c64736f6c63430008140033
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.