ERC-20
Overview
Max Total Supply
1,000,000,000 $WHALE
Holders
161
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,296,748.25047762246999572 $WHALEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WhaleFinder
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; /* ▄▄███▄▄·██╗ ██╗██╗ ██╗ █████╗ ██╗ ███████╗ ██╔════╝██║ ██║██║ ██║██╔══██╗██║ ██╔════╝ ███████╗██║ █╗ ██║███████║███████║██║ █████╗ ╚════██║██║███╗██║██╔══██║██╔══██║██║ ██╔══╝ ███████║╚███╔███╔╝██║ ██║██║ ██║███████╗███████╗ ╚═▀▀▀══╝ ╚══╝╚══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚══════╝ Website: https://www.whalefinder.xyz/ Twitter: https://twitter.com/WhaleFinderERC Telegram: https://t.me/WhaleFinder_Portal Gitbook: https://awf-ai-whale-finder.gitbook.io/usdwhale-project-overview/ */ 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 WhaleFinder is ERC20("WhaleFinder", "$WHALE"), Ownable { // Uniswap variables IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 public constant UNISWAP_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable UNISWAP_V2_PAIR; // Contract variables uint256 constant TOTAL_SUPPLY = 1_000_000_000 ether; address constant BURN_ADDRESS = address(0xdead); uint256 public tradingOpenedOnBlock; bool private swapping; address public marketingWallet; address public buyBackWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; uint256 public tokenSwapThreshold; uint256 public buyTotalFees = 5; uint256 public buyBuyBackFee = 1; uint256 public buyMarketingFee = 4; uint256 public sellTotalFees = 5; uint256 public sellBuyBackFee = 1; uint256 public sellMarketingFee = 4; uint256 public tokensForBuyBack; uint256 public tokensForMarketing; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event EnabledTrading(bool tradingActive); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedBuyBackWallet(address indexed newWallet); event UpdatedMarketingWallet(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); 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() * 10) / 1_000; // 1% max buy maxSellAmount = (totalSupply() * 10) / 1_000; // 1% max sell maxWalletAmount = (totalSupply() * 20) / 1_000; // 2% max holdings tokenSwapThreshold = (totalSupply() * 50) / 10_000; // 0.5% swapToEth threshold buyBackWallet = msg.sender; marketingWallet = 0xe1F9d8cfBCb9B9278a2c586E4e6086D030B56303; _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), "WHALEFINDER ERROR: Cannot set max buy amount lower than 0.1%" ); maxBuyAmount = newNum; emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "WHALEFINDER ERROR: Cannot set max sell amount lower than 0.1%" ); maxSellAmount = newNum; emit UpdatedMaxSellAmount(maxSellAmount); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 3) / 1_000), "WHALEFINDER ERROR: Cannot set max wallet amount lower than 0.3%" ); maxWalletAmount = newNum; emit UpdatedMaxWalletAmount(maxWalletAmount); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "WHALEFINDER ERROR: Swap amount cannot be lower than 0.001% total supply." ); tokenSwapThreshold = newAmount; } function removeLimits() external onlyOwner { limitsInEffect = false; emit RemovedLimits(); } function _excludeFromMaxTransaction( address updAds, bool isExcluded ) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } // can never be turned off function openTrading() public onlyOwner { require(tradingOpenedOnBlock == 0, "WHALEFINDER ERROR: Token state is already live !"); tradingOpenedOnBlock = block.number; tradingActive = true; swapEnabled = true; emit EnabledTrading(tradingActive); } function setMarketingWallet(address _marketingWallet) external onlyOwner { require(_marketingWallet != address(0), "WHALEFINDER ERROR: _marketingWallet address cannot be 0"); marketingWallet = payable(_marketingWallet); emit UpdatedMarketingWallet(_marketingWallet); } function setBuyBackWallet(address _buyBackWallet) external onlyOwner { require(_buyBackWallet != address(0), "WHALEFINDER ERROR: _buyBackWallet address cannot be 0"); buyBackWallet = payable(_buyBackWallet); emit UpdatedBuyBackWallet(_buyBackWallet); } // Trading Logic 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], "WHALEFINDER ERROR: Trading is not active." ); require(from == owner(), "WHALEFINDER ERROR: Trading is enabled"); } //when buy if ( from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxBuyAmount, "WHALEFINDER ERROR: Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWalletAmount, "WHALEFINDER ERROR: Cannot Exceed max wallet" ); } //when sell else if ( to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxSellAmount, "WHALEFINDER ERROR: Sell transfer amount exceeds the max sell." ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= maxWalletAmount, "WHALEFINDER ERROR: 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; tokensForBuyBack += (fees * sellBuyBackFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // Buy else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForBuyBack += (fees * buyBuyBackFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } 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 = tokensForBuyBack + tokensForMarketing; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > tokenSwapThreshold) { contractBalance = tokenSwapThreshold; } bool success; swapTokensForEth(contractBalance); uint256 ethBalance = address(this).balance; uint256 ethForMarketing = (ethBalance * tokensForMarketing) / totalTokensToSwap; tokensForBuyBack = 0; tokensForMarketing = 0; (success, ) = address(marketingWallet).call{value: ethForMarketing}(""); (success, ) = address(buyBackWallet).call{value: address(this).balance}(""); } function withdrawStuckToken(address _token) external { require( msg.sender == owner() || msg.sender == buyBackWallet || msg.sender == marketingWallet, "WHALEFINDER ERROR: Not authorized" ); if (_token == address(0x0)) { payable(owner()).transfer(address(this).balance); return; } 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, "WHALEFINDER ERROR: 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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedBuyBackWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedMarketingWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","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":"buyBackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"sellBuyBackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_buyBackWallet","type":"address"}],"name":"setBuyBackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","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":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBuyBack","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":[{"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":[],"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
60a06040526001600860146101000a81548160ff0219169083151502179055505f600860156101000a81548160ff0219169083151502179055505f600860166101000a81548160ff0219169083151502179055506005600d556001600e556004600f556005601055600160115560046012553480156200007d575f80fd5b506040518060400160405280600b81526020017f5768616c6546696e6465720000000000000000000000000000000000000000008152506040518060400160405280600681526020017f245748414c4500000000000000000000000000000000000000000000000000008152508160039081620000fb919062000d39565b5080600490816200010d919062000d39565b5050506200013062000124620004c460201b60201c565b620004cb60201b60201c565b6200014e336b033b2e3c9fd0803ce80000006200058e60201b60201c565b6200017630737a250d5630b4cf539739df2c5dacb4c659f2488d5f19620006f360201b60201c565b6200019d737a250d5630b4cf539739df2c5dacb4c659f2488d6001620008be60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200022c573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000252919062000e82565b6040518363ffffffff1660e01b81526004016200027192919062000ec3565b6020604051808303815f875af11580156200028e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b4919062000e82565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e8600a620002fc6200095160201b60201c565b62000308919062000f1b565b62000314919062000f92565b6009819055506103e8600a6200032f6200095160201b60201c565b6200033b919062000f1b565b62000347919062000f92565b600a819055506103e86014620003626200095160201b60201c565b6200036e919062000f1b565b6200037a919062000f92565b600b819055506127106032620003956200095160201b60201c565b620003a1919062000f1b565b620003ad919062000f92565b600c819055503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e1f9d8cfbcb9b9278a2c586e4e6086d030b56303600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200045b336001620008be60201b60201c565b6200046e306001620008be60201b60201c565b6200048361dead6001620008be60201b60201c565b620004963360016200095a60201b60201c565b620004a93060016200095a60201b60201c565b620004be61dead60016200095a60201b60201c565b620012a5565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620005ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f69062001027565b60405180910390fd5b620006125f838362000a1260201b60201c565b8060025f82825462000625919062001047565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006d4919062001092565b60405180910390a3620006ef5f838362000a1760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000764576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200075b9062001121565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007cc90620011b5565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620008b1919062001092565b60405180910390a3505050565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746828260405162000945929190620011f1565b60405180910390a15050565b5f600254905090565b6200096a62000a1c60201b60201c565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a0691906200121c565b60405180910390a25050565b505050565b505050565b62000a2c620004c460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000a5262000aad60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000aab576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa29062001285565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000b5157607f821691505b60208210810362000b675762000b6662000b0c565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000bcb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b8e565b62000bd7868362000b8e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000c2162000c1b62000c158462000bef565b62000bf8565b62000bef565b9050919050565b5f819050919050565b62000c3c8362000c01565b62000c5462000c4b8262000c28565b84845462000b9a565b825550505050565b5f90565b62000c6a62000c5c565b62000c7781848462000c31565b505050565b5b8181101562000c9e5762000c925f8262000c60565b60018101905062000c7d565b5050565b601f82111562000ced5762000cb78162000b6d565b62000cc28462000b7f565b8101602085101562000cd2578190505b62000cea62000ce18562000b7f565b83018262000c7c565b50505b505050565b5f82821c905092915050565b5f62000d0f5f198460080262000cf2565b1980831691505092915050565b5f62000d29838362000cfe565b9150826002028217905092915050565b62000d448262000ad5565b67ffffffffffffffff81111562000d605762000d5f62000adf565b5b62000d6c825462000b39565b62000d7982828562000ca2565b5f60209050601f83116001811462000daf575f841562000d9a578287015190505b62000da6858262000d1c565b86555062000e15565b601f19841662000dbf8662000b6d565b5f5b8281101562000de85784890151825560018201915060208501945060208101905062000dc1565b8683101562000e08578489015162000e04601f89168262000cfe565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f62000e4c8262000e21565b9050919050565b62000e5e8162000e40565b811462000e69575f80fd5b50565b5f8151905062000e7c8162000e53565b92915050565b5f6020828403121562000e9a5762000e9962000e1d565b5b5f62000ea98482850162000e6c565b91505092915050565b62000ebd8162000e40565b82525050565b5f60408201905062000ed85f83018562000eb2565b62000ee7602083018462000eb2565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000f278262000bef565b915062000f348362000bef565b925082820262000f448162000bef565b9150828204841483151762000f5e5762000f5d62000eee565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f62000f9e8262000bef565b915062000fab8362000bef565b92508262000fbe5762000fbd62000f65565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f6200100f601f8362000fc9565b91506200101c8262000fd9565b602082019050919050565b5f6020820190508181035f830152620010408162001001565b9050919050565b5f620010538262000bef565b9150620010608362000bef565b92508282019050808211156200107b576200107a62000eee565b5b92915050565b6200108c8162000bef565b82525050565b5f602082019050620010a75f83018462001081565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6200110960248362000fc9565b91506200111682620010ad565b604082019050919050565b5f6020820190508181035f8301526200113a81620010fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6200119d60228362000fc9565b9150620011aa8262001141565b604082019050919050565b5f6020820190508181035f830152620011ce816200118f565b9050919050565b5f8115159050919050565b620011eb81620011d5565b82525050565b5f604082019050620012065f83018562000eb2565b620012156020830184620011e0565b9392505050565b5f602082019050620012315f830184620011e0565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6200126d60208362000fc9565b91506200127a8262001237565b602082019050919050565b5f6020820190508181035f8301526200129e816200125f565b9050919050565b608051614384620012e15f395f818161191e01528181611f1b01528181612064015281816122a20152818161248a015261257001526143845ff3fe60806040526004361061028b575f3560e01c8063751039fc11610159578063bbc0c742116100c0578063d826492011610079578063d826492014610970578063d85ba0631461099a578063dc3f0d0f146109c4578063dd62ed3e146109ec578063f2fde38b14610a28578063f40acc3d14610a5057610292565b8063bbc0c7421461088e578063c0246668146108b8578063c18bc195146108e0578063c74c0fac14610908578063c9567bf914610932578063d257b34f1461094857610292565b80639213691311610112578063921369131461077057806395d89b411461079a578063a457c2d7146107c4578063a4640b8214610800578063a9059cbb14610828578063aa4bde281461086457610292565b8063751039fc1461069c57806375f0a874146106b25780637bce5a04146106dc5780637fa787ba1461070657806388e765ff1461071c5780638da5cb5b1461074657610292565b80631fe70a98116101fd5780635d098b38116101b65780635d098b38146105a457806366d602ae146105cc5780636a486a8e146105f65780636ddd17131461062057806370a082311461064a578063715018a61461068657610292565b80631fe70a981461048657806323b872dd146104b05780632be32b61146104ec578063313ce56714610514578063395093511461053e5780634a62bb651461057a57610292565b80630e3000991161024f5780630e3000991461037857806310d5de53146103a257806318160ddd146103de5780631a221dbb146104085780631cd348c0146104325780631f3fed8f1461045c57610292565b8063068acf6c1461029657806306fdde03146102be578063095ea7b3146102e85780630a3b39a3146103245780630b166d501461034e57610292565b3661029257005b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190612e2a565b610a7a565b005b3480156102c9575f80fd5b506102d2610d29565b6040516102df9190612edf565b60405180910390f35b3480156102f3575f80fd5b5061030e60048036038101906103099190612f32565b610db9565b60405161031b9190612f8a565b60405180910390f35b34801561032f575f80fd5b50610338610ddb565b6040516103459190612fb2565b60405180910390f35b348015610359575f80fd5b50610362610de1565b60405161036f9190612fb2565b60405180910390f35b348015610383575f80fd5b5061038c610de7565b6040516103999190612fb2565b60405180910390f35b3480156103ad575f80fd5b506103c860048036038101906103c39190612e2a565b610ded565b6040516103d59190612f8a565b60405180910390f35b3480156103e9575f80fd5b506103f2610e0a565b6040516103ff9190612fb2565b60405180910390f35b348015610413575f80fd5b5061041c610e13565b6040516104299190612fb2565b60405180910390f35b34801561043d575f80fd5b50610446610e19565b6040516104539190612fda565b60405180910390f35b348015610467575f80fd5b50610470610e3e565b60405161047d9190612fb2565b60405180910390f35b348015610491575f80fd5b5061049a610e44565b6040516104a79190612fb2565b60405180910390f35b3480156104bb575f80fd5b506104d660048036038101906104d19190612ff3565b610e4a565b6040516104e39190612f8a565b60405180910390f35b3480156104f7575f80fd5b50610512600480360381019061050d9190613043565b610e78565b005b34801561051f575f80fd5b50610528610f26565b6040516105359190613089565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f9190612f32565b610f2e565b6040516105719190612f8a565b60405180910390f35b348015610585575f80fd5b5061058e610f64565b60405161059b9190612f8a565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c59190612e2a565b610f77565b005b3480156105d7575f80fd5b506105e0611074565b6040516105ed9190612fb2565b60405180910390f35b348015610601575f80fd5b5061060a61107a565b6040516106179190612fb2565b60405180910390f35b34801561062b575f80fd5b50610634611080565b6040516106419190612f8a565b60405180910390f35b348015610655575f80fd5b50610670600480360381019061066b9190612e2a565b611093565b60405161067d9190612fb2565b60405180910390f35b348015610691575f80fd5b5061069a6110d8565b005b3480156106a7575f80fd5b506106b06110eb565b005b3480156106bd575f80fd5b506106c661113b565b6040516106d39190612fda565b60405180910390f35b3480156106e7575f80fd5b506106f0611161565b6040516106fd9190612fb2565b60405180910390f35b348015610711575f80fd5b5061071a611167565b005b348015610727575f80fd5b50610730611221565b60405161073d9190612fb2565b60405180910390f35b348015610751575f80fd5b5061075a611227565b6040516107679190612fda565b60405180910390f35b34801561077b575f80fd5b5061078461124f565b6040516107919190612fb2565b60405180910390f35b3480156107a5575f80fd5b506107ae611255565b6040516107bb9190612edf565b60405180910390f35b3480156107cf575f80fd5b506107ea60048036038101906107e59190612f32565b6112e5565b6040516107f79190612f8a565b60405180910390f35b34801561080b575f80fd5b5061082660048036038101906108219190612e2a565b61135a565b005b348015610833575f80fd5b5061084e60048036038101906108499190612f32565b611456565b60405161085b9190612f8a565b60405180910390f35b34801561086f575f80fd5b50610878611478565b6040516108859190612fb2565b60405180910390f35b348015610899575f80fd5b506108a261147e565b6040516108af9190612f8a565b60405180910390f35b3480156108c3575f80fd5b506108de60048036038101906108d991906130cc565b611491565b005b3480156108eb575f80fd5b5061090660048036038101906109019190613043565b61153f565b005b348015610913575f80fd5b5061091c6115ed565b6040516109299190613165565b60405180910390f35b34801561093d575f80fd5b50610946611605565b005b348015610953575f80fd5b5061096e60048036038101906109699190613043565b6116d6565b005b34801561097b575f80fd5b5061098461174c565b604051610991919061319e565b60405180910390f35b3480156109a5575f80fd5b506109ae611764565b6040516109bb9190612fb2565b60405180910390f35b3480156109cf575f80fd5b506109ea60048036038101906109e59190613043565b61176a565b005b3480156109f7575f80fd5b50610a126004803603810190610a0d91906131b7565b611818565b604051610a1f9190612fb2565b60405180910390f35b348015610a33575f80fd5b50610a4e6004803603810190610a499190612e2a565b61189a565b005b348015610a5b575f80fd5b50610a6461191c565b604051610a719190612fda565b60405180910390f35b610a82611227565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b07575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610b5f5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613265565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2157610bd9611227565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c1b573d5f803e3d5ffd5b50610d26565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c5f9190612fda565b602060405180830381865afa158015610c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9e9190613297565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610cc4611227565b836040518363ffffffff1660e01b8152600401610ce29291906132c2565b6020604051808303815f875af1158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2291906132fd565b5050505b50565b606060038054610d3890613355565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490613355565b8015610daf5780601f10610d8657610100808354040283529160200191610daf565b820191905f5260205f20905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b5f80610dc3611940565b9050610dd0818585611947565b600191505092915050565b60065481565b60135481565b600c5481565b6016602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b60115481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600e5481565b5f80610e54611940565b9050610e61858285611b0a565b610e6c858585611b95565b60019150509392505050565b610e80612688565b6103e86001610e8d610e0a565b610e9791906133b2565b610ea19190613420565b811015610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906134c0565b60405180910390fd5b806009819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600954604051610f1b9190612fb2565b60405180910390a150565b5f6012905090565b5f80610f38611940565b9050610f59818585610f4a8589611818565b610f5491906134de565b611947565b600191505092915050565b600860149054906101000a900460ff1681565b610f7f612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613581565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b600a5481565b60105481565b600860169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110e0612688565b6110e95f612706565b565b6110f3612688565b5f600860146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b61116f612688565b5f611178611227565b73ffffffffffffffffffffffffffffffffffffffff164760405161119b906135cc565b5f6040518083038185875af1925050503d805f81146111d5576040519150601f19603f3d011682016040523d82523d5f602084013e6111da565b606091505b505090508061121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613650565b60405180910390fd5b50565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606004805461126490613355565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613355565b80156112db5780601f106112b2576101008083540402835291602001916112db565b820191905f5260205f20905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b5f806112ef611940565b90505f6112fc8286611818565b905083811015611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906136de565b60405180910390fd5b61134e8286868403611947565b60019250505092915050565b611362612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c79061376c565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcffc3b95bf190192a471083b06c65f5edff28adfb368cba1141e08aa65edb18660405160405180910390a250565b5f80611460611940565b905061146d818585611b95565b600191505092915050565b600b5481565b600860159054906101000a900460ff1681565b611499612688565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115339190612f8a565b60405180910390a25050565b611547612688565b6103e86003611554610e0a565b61155e91906133b2565b6115689190613420565b8110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a1906137fa565b60405180910390fd5b80600b819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600b546040516115e29190612fb2565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b61160d612688565b5f60065414611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613888565b60405180910390fd5b436006819055506001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600860159054906101000a900460ff166040516116cc9190612f8a565b60405180910390a1565b6116de612688565b620186a060016116ec610e0a565b6116f691906133b2565b6117009190613420565b811015611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117399061393c565b60405180910390fd5b80600c8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d5481565b611772612688565b6103e8600161177f610e0a565b61178991906133b2565b6117939190613420565b8110156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906139ca565b60405180910390fd5b80600a819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600a5460405161180d9190612fb2565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6118a2612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613a58565b60405180910390fd5b61191981612706565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90613ae6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613b74565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611afd9190612fb2565b60405180910390a3505050565b5f611b158484611818565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b8f5781811015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890613bdc565b60405180910390fd5b611b8e8484848403611947565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613c6a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613cf8565b60405180910390fd5b5f8111611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613d60565b60405180910390fd5b600860149054906101000a900460ff161561225357611cd0611227565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3e5750611d0e611227565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d7657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611db0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561225257600860159054906101000a900460ff16611f195760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e64575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613dee565b60405180910390fd5b611eab611227565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613e7c565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fbb575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561206257600954811115612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613f0a565b60405180910390fd5b600b5461201183611093565b8261201c91906134de565b111561205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613f98565b60405180910390fd5b612251565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015612104575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561215357600a5481111561214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590614026565b60405180910390fd5b612250565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156121f1575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561224f57600b5461220283611093565b8261220d91906134de565b111561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613f98565b60405180910390fd5b5b5b5b5b5b5f61225d30611093565b90505f600c5482101590508080156122815750600860169054906101000a900460ff165b8015612299575060075f9054906101000a900460ff16155b80156122f157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612344575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612397575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123d857600160075f6101000a81548160ff0219169083151502179055506123be6127c9565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612478575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612481575f90505b5f8115612674577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156124e457505f601054115b1561256e576064601054866124f991906133b2565b6125039190613420565b90506010546011548261251691906133b2565b6125209190613420565b60135f82825461253091906134de565b925050819055506010546012548261254891906133b2565b6125529190613420565b60145f82825461256291906134de565b92505081905550612651565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156125ca57505f600d54115b15612650576064600d54866125df91906133b2565b6125e99190613420565b9050600d54600e54826125fc91906133b2565b6126069190613420565b60135f82825461261691906134de565b92505081905550600d54600f548261262e91906133b2565b6126389190613420565b60145f82825461264891906134de565b925050819055505b5b5f81111561266557612664873083612966565b5b80856126719190614044565b94505b61267f878787612966565b50505050505050565b612690611940565b73ffffffffffffffffffffffffffffffffffffffff166126ae611227565b73ffffffffffffffffffffffffffffffffffffffff1614612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906140c1565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6127d330611093565b90505f6014546013546127e691906134de565b90505f8214806127f557505f81145b15612801575050612964565b600c5482111561281157600c5491505b5f61281b83612bd2565b5f4790505f836014548361282f91906133b2565b6128399190613420565b90505f6013819055505f601481905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288f906135cc565b5f6040518083038185875af1925050503d805f81146128c9576040519150601f19603f3d011682016040523d82523d5f602084013e6128ce565b606091505b50508093505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612919906135cc565b5f6040518083038185875af1925050503d805f8114612953576040519150601f19603f3d011682016040523d82523d5f602084013e612958565b606091505b50508093505050505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613c6a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613cf8565b60405180910390fd5b612a4d838383612dc2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac79061414f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bb99190612fb2565b60405180910390a3612bcc848484612dc7565b50505050565b5f600267ffffffffffffffff811115612bee57612bed61416d565b5b604051908082528060200260200182016040528015612c1c5781602001602082028036833780820191505090505b50905030815f81518110612c3357612c3261419a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cee91906141db565b81600181518110612d0257612d0161419a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d919594939291906142f6565b5f604051808303815f87803b158015612da8575f80fd5b505af1158015612dba573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612df982612dd0565b9050919050565b612e0981612def565b8114612e13575f80fd5b50565b5f81359050612e2481612e00565b92915050565b5f60208284031215612e3f57612e3e612dcc565b5b5f612e4c84828501612e16565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e8c578082015181840152602081019050612e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612eb182612e55565b612ebb8185612e5f565b9350612ecb818560208601612e6f565b612ed481612e97565b840191505092915050565b5f6020820190508181035f830152612ef78184612ea7565b905092915050565b5f819050919050565b612f1181612eff565b8114612f1b575f80fd5b50565b5f81359050612f2c81612f08565b92915050565b5f8060408385031215612f4857612f47612dcc565b5b5f612f5585828601612e16565b9250506020612f6685828601612f1e565b9150509250929050565b5f8115159050919050565b612f8481612f70565b82525050565b5f602082019050612f9d5f830184612f7b565b92915050565b612fac81612eff565b82525050565b5f602082019050612fc55f830184612fa3565b92915050565b612fd481612def565b82525050565b5f602082019050612fed5f830184612fcb565b92915050565b5f805f6060848603121561300a57613009612dcc565b5b5f61301786828701612e16565b935050602061302886828701612e16565b925050604061303986828701612f1e565b9150509250925092565b5f6020828403121561305857613057612dcc565b5b5f61306584828501612f1e565b91505092915050565b5f60ff82169050919050565b6130838161306e565b82525050565b5f60208201905061309c5f83018461307a565b92915050565b6130ab81612f70565b81146130b5575f80fd5b50565b5f813590506130c6816130a2565b92915050565b5f80604083850312156130e2576130e1612dcc565b5b5f6130ef85828601612e16565b9250506020613100858286016130b8565b9150509250929050565b5f819050919050565b5f61312d61312861312384612dd0565b61310a565b612dd0565b9050919050565b5f61313e82613113565b9050919050565b5f61314f82613134565b9050919050565b61315f81613145565b82525050565b5f6020820190506131785f830184613156565b92915050565b5f61318882613134565b9050919050565b6131988161317e565b82525050565b5f6020820190506131b15f83018461318f565b92915050565b5f80604083850312156131cd576131cc612dcc565b5b5f6131da85828601612e16565b92505060206131eb85828601612e16565b9150509250929050565b7f5748414c4546494e444552204552524f523a204e6f7420617574686f72697a655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f61324f602183612e5f565b915061325a826131f5565b604082019050919050565b5f6020820190508181035f83015261327c81613243565b9050919050565b5f8151905061329181612f08565b92915050565b5f602082840312156132ac576132ab612dcc565b5b5f6132b984828501613283565b91505092915050565b5f6040820190506132d55f830185612fcb565b6132e26020830184612fa3565b9392505050565b5f815190506132f7816130a2565b92915050565b5f6020828403121561331257613311612dcc565b5b5f61331f848285016132e9565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061336c57607f821691505b60208210810361337f5761337e613328565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133bc82612eff565b91506133c783612eff565b92508282026133d581612eff565b915082820484148315176133ec576133eb613385565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61342a82612eff565b915061343583612eff565b925082613445576134446133f3565b5b828204905092915050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782062757920616d6f756e74206c6f776572207468616e20302e312500000000602082015250565b5f6134aa603c83612e5f565b91506134b582613450565b604082019050919050565b5f6020820190508181035f8301526134d78161349e565b9050919050565b5f6134e882612eff565b91506134f383612eff565b925082820190508082111561350b5761350a613385565b5b92915050565b7f5748414c4546494e444552204552524f523a205f6d61726b6574696e6757616c5f8201527f6c657420616464726573732063616e6e6f742062652030000000000000000000602082015250565b5f61356b603783612e5f565b915061357682613511565b604082019050919050565b5f6020820190508181035f8301526135988161355f565b9050919050565b5f81905092915050565b50565b5f6135b75f8361359f565b91506135c2826135a9565b5f82019050919050565b5f6135d6826135ac565b9150819050919050565b7f5748414c4546494e444552204552524f523a206661696c656420746f207769745f8201527f68647261772066756e6473000000000000000000000000000000000000000000602082015250565b5f61363a602b83612e5f565b9150613645826135e0565b604082019050919050565b5f6020820190508181035f8301526136678161362e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6136c8602583612e5f565b91506136d38261366e565b604082019050919050565b5f6020820190508181035f8301526136f5816136bc565b9050919050565b7f5748414c4546494e444552204552524f523a205f6275794261636b57616c6c655f8201527f7420616464726573732063616e6e6f7420626520300000000000000000000000602082015250565b5f613756603583612e5f565b9150613761826136fc565b604082019050919050565b5f6020820190508181035f8301526137838161374a565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782077616c6c657420616d6f756e74206c6f776572207468616e20302e332500602082015250565b5f6137e4603f83612e5f565b91506137ef8261378a565b604082019050919050565b5f6020820190508181035f830152613811816137d8565b9050919050565b7f5748414c4546494e444552204552524f523a20546f6b656e20737461746520695f8201527f7320616c7265616479206c697665202100000000000000000000000000000000602082015250565b5f613872603083612e5f565b915061387d82613818565b604082019050919050565b5f6020820190508181035f83015261389f81613866565b9050919050565b7f5748414c4546494e444552204552524f523a205377617020616d6f756e7420635f8201527f616e6e6f74206265206c6f776572207468616e20302e3030312520746f74616c60208201527f20737570706c792e000000000000000000000000000000000000000000000000604082015250565b5f613926604883612e5f565b9150613931826138a6565b606082019050919050565b5f6020820190508181035f8301526139538161391a565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782073656c6c20616d6f756e74206c6f776572207468616e20302e3125000000602082015250565b5f6139b4603d83612e5f565b91506139bf8261395a565b604082019050919050565b5f6020820190508181035f8301526139e1816139a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a42602683612e5f565b9150613a4d826139e8565b604082019050919050565b5f6020820190508181035f830152613a6f81613a36565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad0602483612e5f565b9150613adb82613a76565b604082019050919050565b5f6020820190508181035f830152613afd81613ac4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b5e602283612e5f565b9150613b6982613b04565b604082019050919050565b5f6020820190508181035f830152613b8b81613b52565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bc6601d83612e5f565b9150613bd182613b92565b602082019050919050565b5f6020820190508181035f830152613bf381613bba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c54602583612e5f565b9150613c5f82613bfa565b604082019050919050565b5f6020820190508181035f830152613c8181613c48565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ce2602383612e5f565b9150613ced82613c88565b604082019050919050565b5f6020820190508181035f830152613d0f81613cd6565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613d4a601d83612e5f565b9150613d5582613d16565b602082019050919050565b5f6020820190508181035f830152613d7781613d3e565b9050919050565b7f5748414c4546494e444552204552524f523a2054726164696e67206973206e6f5f8201527f74206163746976652e0000000000000000000000000000000000000000000000602082015250565b5f613dd8602983612e5f565b9150613de382613d7e565b604082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f5748414c4546494e444552204552524f523a2054726164696e6720697320656e5f8201527f61626c6564000000000000000000000000000000000000000000000000000000602082015250565b5f613e66602583612e5f565b9150613e7182613e0c565b604082019050919050565b5f6020820190508181035f830152613e9381613e5a565b9050919050565b7f5748414c4546494e444552204552524f523a20427579207472616e73666572205f8201527f616d6f756e74206578636565647320746865206d6178206275792e0000000000602082015250565b5f613ef4603b83612e5f565b9150613eff82613e9a565b604082019050919050565b5f6020820190508181035f830152613f2181613ee8565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f74204578636565645f8201527f206d61782077616c6c6574000000000000000000000000000000000000000000602082015250565b5f613f82602b83612e5f565b9150613f8d82613f28565b604082019050919050565b5f6020820190508181035f830152613faf81613f76565b9050919050565b7f5748414c4546494e444552204552524f523a2053656c6c207472616e736665725f8201527f20616d6f756e74206578636565647320746865206d61782073656c6c2e000000602082015250565b5f614010603d83612e5f565b915061401b82613fb6565b604082019050919050565b5f6020820190508181035f83015261403d81614004565b9050919050565b5f61404e82612eff565b915061405983612eff565b925082820390508181111561407157614070613385565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6140ab602083612e5f565b91506140b682614077565b602082019050919050565b5f6020820190508181035f8301526140d88161409f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614139602683612e5f565b9150614144826140df565b604082019050919050565b5f6020820190508181035f8301526141668161412d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506141d581612e00565b92915050565b5f602082840312156141f0576141ef612dcc565b5b5f6141fd848285016141c7565b91505092915050565b5f819050919050565b5f61422961422461421f84614206565b61310a565b612eff565b9050919050565b6142398161420f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61427181612def565b82525050565b5f6142828383614268565b60208301905092915050565b5f602082019050919050565b5f6142a48261423f565b6142ae8185614249565b93506142b983614259565b805f5b838110156142e95781516142d08882614277565b97506142db8361428e565b9250506001810190506142bc565b5085935050505092915050565b5f60a0820190506143095f830188612fa3565b6143166020830187614230565b8181036040830152614328818661429a565b90506143376060830185612fcb565b6143446080830184612fa3565b969550505050505056fea2646970667358221220cc49efcdba81bb87e48fbe14d3cc55e9a0887be47ac8453aaa25e26f13fc4cc164736f6c63430008140033
Deployed Bytecode
0x60806040526004361061028b575f3560e01c8063751039fc11610159578063bbc0c742116100c0578063d826492011610079578063d826492014610970578063d85ba0631461099a578063dc3f0d0f146109c4578063dd62ed3e146109ec578063f2fde38b14610a28578063f40acc3d14610a5057610292565b8063bbc0c7421461088e578063c0246668146108b8578063c18bc195146108e0578063c74c0fac14610908578063c9567bf914610932578063d257b34f1461094857610292565b80639213691311610112578063921369131461077057806395d89b411461079a578063a457c2d7146107c4578063a4640b8214610800578063a9059cbb14610828578063aa4bde281461086457610292565b8063751039fc1461069c57806375f0a874146106b25780637bce5a04146106dc5780637fa787ba1461070657806388e765ff1461071c5780638da5cb5b1461074657610292565b80631fe70a98116101fd5780635d098b38116101b65780635d098b38146105a457806366d602ae146105cc5780636a486a8e146105f65780636ddd17131461062057806370a082311461064a578063715018a61461068657610292565b80631fe70a981461048657806323b872dd146104b05780632be32b61146104ec578063313ce56714610514578063395093511461053e5780634a62bb651461057a57610292565b80630e3000991161024f5780630e3000991461037857806310d5de53146103a257806318160ddd146103de5780631a221dbb146104085780631cd348c0146104325780631f3fed8f1461045c57610292565b8063068acf6c1461029657806306fdde03146102be578063095ea7b3146102e85780630a3b39a3146103245780630b166d501461034e57610292565b3661029257005b5f80fd5b3480156102a1575f80fd5b506102bc60048036038101906102b79190612e2a565b610a7a565b005b3480156102c9575f80fd5b506102d2610d29565b6040516102df9190612edf565b60405180910390f35b3480156102f3575f80fd5b5061030e60048036038101906103099190612f32565b610db9565b60405161031b9190612f8a565b60405180910390f35b34801561032f575f80fd5b50610338610ddb565b6040516103459190612fb2565b60405180910390f35b348015610359575f80fd5b50610362610de1565b60405161036f9190612fb2565b60405180910390f35b348015610383575f80fd5b5061038c610de7565b6040516103999190612fb2565b60405180910390f35b3480156103ad575f80fd5b506103c860048036038101906103c39190612e2a565b610ded565b6040516103d59190612f8a565b60405180910390f35b3480156103e9575f80fd5b506103f2610e0a565b6040516103ff9190612fb2565b60405180910390f35b348015610413575f80fd5b5061041c610e13565b6040516104299190612fb2565b60405180910390f35b34801561043d575f80fd5b50610446610e19565b6040516104539190612fda565b60405180910390f35b348015610467575f80fd5b50610470610e3e565b60405161047d9190612fb2565b60405180910390f35b348015610491575f80fd5b5061049a610e44565b6040516104a79190612fb2565b60405180910390f35b3480156104bb575f80fd5b506104d660048036038101906104d19190612ff3565b610e4a565b6040516104e39190612f8a565b60405180910390f35b3480156104f7575f80fd5b50610512600480360381019061050d9190613043565b610e78565b005b34801561051f575f80fd5b50610528610f26565b6040516105359190613089565b60405180910390f35b348015610549575f80fd5b50610564600480360381019061055f9190612f32565b610f2e565b6040516105719190612f8a565b60405180910390f35b348015610585575f80fd5b5061058e610f64565b60405161059b9190612f8a565b60405180910390f35b3480156105af575f80fd5b506105ca60048036038101906105c59190612e2a565b610f77565b005b3480156105d7575f80fd5b506105e0611074565b6040516105ed9190612fb2565b60405180910390f35b348015610601575f80fd5b5061060a61107a565b6040516106179190612fb2565b60405180910390f35b34801561062b575f80fd5b50610634611080565b6040516106419190612f8a565b60405180910390f35b348015610655575f80fd5b50610670600480360381019061066b9190612e2a565b611093565b60405161067d9190612fb2565b60405180910390f35b348015610691575f80fd5b5061069a6110d8565b005b3480156106a7575f80fd5b506106b06110eb565b005b3480156106bd575f80fd5b506106c661113b565b6040516106d39190612fda565b60405180910390f35b3480156106e7575f80fd5b506106f0611161565b6040516106fd9190612fb2565b60405180910390f35b348015610711575f80fd5b5061071a611167565b005b348015610727575f80fd5b50610730611221565b60405161073d9190612fb2565b60405180910390f35b348015610751575f80fd5b5061075a611227565b6040516107679190612fda565b60405180910390f35b34801561077b575f80fd5b5061078461124f565b6040516107919190612fb2565b60405180910390f35b3480156107a5575f80fd5b506107ae611255565b6040516107bb9190612edf565b60405180910390f35b3480156107cf575f80fd5b506107ea60048036038101906107e59190612f32565b6112e5565b6040516107f79190612f8a565b60405180910390f35b34801561080b575f80fd5b5061082660048036038101906108219190612e2a565b61135a565b005b348015610833575f80fd5b5061084e60048036038101906108499190612f32565b611456565b60405161085b9190612f8a565b60405180910390f35b34801561086f575f80fd5b50610878611478565b6040516108859190612fb2565b60405180910390f35b348015610899575f80fd5b506108a261147e565b6040516108af9190612f8a565b60405180910390f35b3480156108c3575f80fd5b506108de60048036038101906108d991906130cc565b611491565b005b3480156108eb575f80fd5b5061090660048036038101906109019190613043565b61153f565b005b348015610913575f80fd5b5061091c6115ed565b6040516109299190613165565b60405180910390f35b34801561093d575f80fd5b50610946611605565b005b348015610953575f80fd5b5061096e60048036038101906109699190613043565b6116d6565b005b34801561097b575f80fd5b5061098461174c565b604051610991919061319e565b60405180910390f35b3480156109a5575f80fd5b506109ae611764565b6040516109bb9190612fb2565b60405180910390f35b3480156109cf575f80fd5b506109ea60048036038101906109e59190613043565b61176a565b005b3480156109f7575f80fd5b50610a126004803603810190610a0d91906131b7565b611818565b604051610a1f9190612fb2565b60405180910390f35b348015610a33575f80fd5b50610a4e6004803603810190610a499190612e2a565b61189a565b005b348015610a5b575f80fd5b50610a6461191c565b604051610a719190612fda565b60405180910390f35b610a82611227565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610b07575060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b80610b5f5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9590613265565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c2157610bd9611227565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610c1b573d5f803e3d5ffd5b50610d26565b5f8190505f8173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c5f9190612fda565b602060405180830381865afa158015610c7a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c9e9190613297565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb610cc4611227565b836040518363ffffffff1660e01b8152600401610ce29291906132c2565b6020604051808303815f875af1158015610cfe573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d2291906132fd565b5050505b50565b606060038054610d3890613355565b80601f0160208091040260200160405190810160405280929190818152602001828054610d6490613355565b8015610daf5780601f10610d8657610100808354040283529160200191610daf565b820191905f5260205f20905b815481529060010190602001808311610d9257829003601f168201915b5050505050905090565b5f80610dc3611940565b9050610dd0818585611947565b600191505092915050565b60065481565b60135481565b600c5481565b6016602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b60115481565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b600e5481565b5f80610e54611940565b9050610e61858285611b0a565b610e6c858585611b95565b60019150509392505050565b610e80612688565b6103e86001610e8d610e0a565b610e9791906133b2565b610ea19190613420565b811015610ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eda906134c0565b60405180910390fd5b806009819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600954604051610f1b9190612fb2565b60405180910390a150565b5f6012905090565b5f80610f38611940565b9050610f59818585610f4a8589611818565b610f5491906134de565b611947565b600191505092915050565b600860149054906101000a900460ff1681565b610f7f612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe490613581565b60405180910390fd5b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f2026f0b479f097ea9d4c74dac26e5271ba4d59931603970da5458ea8aa3dcf3760405160405180910390a250565b600a5481565b60105481565b600860169054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6110e0612688565b6110e95f612706565b565b6110f3612688565b5f600860146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b61116f612688565b5f611178611227565b73ffffffffffffffffffffffffffffffffffffffff164760405161119b906135cc565b5f6040518083038185875af1925050503d805f81146111d5576040519150601f19603f3d011682016040523d82523d5f602084013e6111da565b606091505b505090508061121e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121590613650565b60405180910390fd5b50565b60095481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60125481565b60606004805461126490613355565b80601f016020809104026020016040519081016040528092919081815260200182805461129090613355565b80156112db5780601f106112b2576101008083540402835291602001916112db565b820191905f5260205f20905b8154815290600101906020018083116112be57829003601f168201915b5050505050905090565b5f806112ef611940565b90505f6112fc8286611818565b905083811015611341576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611338906136de565b60405180910390fd5b61134e8286868403611947565b60019250505092915050565b611362612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c79061376c565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fcffc3b95bf190192a471083b06c65f5edff28adfb368cba1141e08aa65edb18660405160405180910390a250565b5f80611460611940565b905061146d818585611b95565b600191505092915050565b600b5481565b600860159054906101000a900460ff1681565b611499612688565b8060155f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115339190612f8a565b60405180910390a25050565b611547612688565b6103e86003611554610e0a565b61155e91906133b2565b6115689190613420565b8110156115aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a1906137fa565b60405180910390fd5b80600b819055507fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc600b546040516115e29190612fb2565b60405180910390a150565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b61160d612688565b5f60065414611651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164890613888565b60405180910390fd5b436006819055506001600860156101000a81548160ff0219169083151502179055506001600860166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600860159054906101000a900460ff166040516116cc9190612f8a565b60405180910390a1565b6116de612688565b620186a060016116ec610e0a565b6116f691906133b2565b6117009190613420565b811015611742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117399061393c565b60405180910390fd5b80600c8190555050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600d5481565b611772612688565b6103e8600161177f610e0a565b61178991906133b2565b6117939190613420565b8110156117d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cc906139ca565b60405180910390fd5b80600a819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e600a5460405161180d9190612fb2565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6118a2612688565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611910576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190790613a58565b60405180910390fd5b61191981612706565b50565b7f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6781565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac90613ae6565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613b74565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611afd9190612fb2565b60405180910390a3505050565b5f611b158484611818565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b8f5781811015611b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7890613bdc565b60405180910390fd5b611b8e8484848403611947565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90613c6a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613cf8565b60405180910390fd5b5f8111611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613d60565b60405180910390fd5b600860149054906101000a900460ff161561225357611cd0611227565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d3e5750611d0e611227565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d7657505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611db0575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561225257600860159054906101000a900460ff16611f195760165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e64575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613dee565b60405180910390fd5b611eab611227565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0f90613e7c565b60405180910390fd5b5b7f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611fbb575060165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561206257600954811115612005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613f0a565b60405180910390fd5b600b5461201183611093565b8261201c91906134de565b111561205d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205490613f98565b60405180910390fd5b612251565b7f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015612104575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561215357600a5481111561214e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214590614026565b60405180910390fd5b612250565b60165f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156121f1575060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561224f57600b5461220283611093565b8261220d91906134de565b111561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613f98565b60405180910390fd5b5b5b5b5b5b5f61225d30611093565b90505f600c5482101590508080156122815750600860169054906101000a900460ff165b8015612299575060075f9054906101000a900460ff16155b80156122f157507f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b8015612344575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612397575060155f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123d857600160075f6101000a81548160ff0219169083151502179055506123be6127c9565b5f60075f6101000a81548160ff0219169083151502179055505b5f6001905060155f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612478575060155f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612481575f90505b5f8115612674577f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6773ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156124e457505f601054115b1561256e576064601054866124f991906133b2565b6125039190613420565b90506010546011548261251691906133b2565b6125209190613420565b60135f82825461253091906134de565b925050819055506010546012548261254891906133b2565b6125529190613420565b60145f82825461256291906134de565b92505081905550612651565b7f0000000000000000000000006233e6cf37cdf809cee9100555e8414bd1de2a6773ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156125ca57505f600d54115b15612650576064600d54866125df91906133b2565b6125e99190613420565b9050600d54600e54826125fc91906133b2565b6126069190613420565b60135f82825461261691906134de565b92505081905550600d54600f548261262e91906133b2565b6126389190613420565b60145f82825461264891906134de565b925050819055505b5b5f81111561266557612664873083612966565b5b80856126719190614044565b94505b61267f878787612966565b50505050505050565b612690611940565b73ffffffffffffffffffffffffffffffffffffffff166126ae611227565b73ffffffffffffffffffffffffffffffffffffffff1614612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb906140c1565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6127d330611093565b90505f6014546013546127e691906134de565b90505f8214806127f557505f81145b15612801575050612964565b600c5482111561281157600c5491505b5f61281b83612bd2565b5f4790505f836014548361282f91906133b2565b6128399190613420565b90505f6013819055505f601481905550600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161288f906135cc565b5f6040518083038185875af1925050503d805f81146128c9576040519150601f19603f3d011682016040523d82523d5f602084013e6128ce565b606091505b50508093505060085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612919906135cc565b5f6040518083038185875af1925050503d805f8114612953576040519150601f19603f3d011682016040523d82523d5f602084013e612958565b606091505b50508093505050505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036129d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cb90613c6a565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613cf8565b60405180910390fd5b612a4d838383612dc2565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac79061414f565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612bb99190612fb2565b60405180910390a3612bcc848484612dc7565b50505050565b5f600267ffffffffffffffff811115612bee57612bed61416d565b5b604051908082528060200260200182016040528015612c1c5781602001602082028036833780820191505090505b50905030815f81518110612c3357612c3261419a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612cca573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612cee91906141db565b81600181518110612d0257612d0161419a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d919594939291906142f6565b5f604051808303815f87803b158015612da8575f80fd5b505af1158015612dba573d5f803e3d5ffd5b505050505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612df982612dd0565b9050919050565b612e0981612def565b8114612e13575f80fd5b50565b5f81359050612e2481612e00565b92915050565b5f60208284031215612e3f57612e3e612dcc565b5b5f612e4c84828501612e16565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612e8c578082015181840152602081019050612e71565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612eb182612e55565b612ebb8185612e5f565b9350612ecb818560208601612e6f565b612ed481612e97565b840191505092915050565b5f6020820190508181035f830152612ef78184612ea7565b905092915050565b5f819050919050565b612f1181612eff565b8114612f1b575f80fd5b50565b5f81359050612f2c81612f08565b92915050565b5f8060408385031215612f4857612f47612dcc565b5b5f612f5585828601612e16565b9250506020612f6685828601612f1e565b9150509250929050565b5f8115159050919050565b612f8481612f70565b82525050565b5f602082019050612f9d5f830184612f7b565b92915050565b612fac81612eff565b82525050565b5f602082019050612fc55f830184612fa3565b92915050565b612fd481612def565b82525050565b5f602082019050612fed5f830184612fcb565b92915050565b5f805f6060848603121561300a57613009612dcc565b5b5f61301786828701612e16565b935050602061302886828701612e16565b925050604061303986828701612f1e565b9150509250925092565b5f6020828403121561305857613057612dcc565b5b5f61306584828501612f1e565b91505092915050565b5f60ff82169050919050565b6130838161306e565b82525050565b5f60208201905061309c5f83018461307a565b92915050565b6130ab81612f70565b81146130b5575f80fd5b50565b5f813590506130c6816130a2565b92915050565b5f80604083850312156130e2576130e1612dcc565b5b5f6130ef85828601612e16565b9250506020613100858286016130b8565b9150509250929050565b5f819050919050565b5f61312d61312861312384612dd0565b61310a565b612dd0565b9050919050565b5f61313e82613113565b9050919050565b5f61314f82613134565b9050919050565b61315f81613145565b82525050565b5f6020820190506131785f830184613156565b92915050565b5f61318882613134565b9050919050565b6131988161317e565b82525050565b5f6020820190506131b15f83018461318f565b92915050565b5f80604083850312156131cd576131cc612dcc565b5b5f6131da85828601612e16565b92505060206131eb85828601612e16565b9150509250929050565b7f5748414c4546494e444552204552524f523a204e6f7420617574686f72697a655f8201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b5f61324f602183612e5f565b915061325a826131f5565b604082019050919050565b5f6020820190508181035f83015261327c81613243565b9050919050565b5f8151905061329181612f08565b92915050565b5f602082840312156132ac576132ab612dcc565b5b5f6132b984828501613283565b91505092915050565b5f6040820190506132d55f830185612fcb565b6132e26020830184612fa3565b9392505050565b5f815190506132f7816130a2565b92915050565b5f6020828403121561331257613311612dcc565b5b5f61331f848285016132e9565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061336c57607f821691505b60208210810361337f5761337e613328565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6133bc82612eff565b91506133c783612eff565b92508282026133d581612eff565b915082820484148315176133ec576133eb613385565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61342a82612eff565b915061343583612eff565b925082613445576134446133f3565b5b828204905092915050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782062757920616d6f756e74206c6f776572207468616e20302e312500000000602082015250565b5f6134aa603c83612e5f565b91506134b582613450565b604082019050919050565b5f6020820190508181035f8301526134d78161349e565b9050919050565b5f6134e882612eff565b91506134f383612eff565b925082820190508082111561350b5761350a613385565b5b92915050565b7f5748414c4546494e444552204552524f523a205f6d61726b6574696e6757616c5f8201527f6c657420616464726573732063616e6e6f742062652030000000000000000000602082015250565b5f61356b603783612e5f565b915061357682613511565b604082019050919050565b5f6020820190508181035f8301526135988161355f565b9050919050565b5f81905092915050565b50565b5f6135b75f8361359f565b91506135c2826135a9565b5f82019050919050565b5f6135d6826135ac565b9150819050919050565b7f5748414c4546494e444552204552524f523a206661696c656420746f207769745f8201527f68647261772066756e6473000000000000000000000000000000000000000000602082015250565b5f61363a602b83612e5f565b9150613645826135e0565b604082019050919050565b5f6020820190508181035f8301526136678161362e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6136c8602583612e5f565b91506136d38261366e565b604082019050919050565b5f6020820190508181035f8301526136f5816136bc565b9050919050565b7f5748414c4546494e444552204552524f523a205f6275794261636b57616c6c655f8201527f7420616464726573732063616e6e6f7420626520300000000000000000000000602082015250565b5f613756603583612e5f565b9150613761826136fc565b604082019050919050565b5f6020820190508181035f8301526137838161374a565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782077616c6c657420616d6f756e74206c6f776572207468616e20302e332500602082015250565b5f6137e4603f83612e5f565b91506137ef8261378a565b604082019050919050565b5f6020820190508181035f830152613811816137d8565b9050919050565b7f5748414c4546494e444552204552524f523a20546f6b656e20737461746520695f8201527f7320616c7265616479206c697665202100000000000000000000000000000000602082015250565b5f613872603083612e5f565b915061387d82613818565b604082019050919050565b5f6020820190508181035f83015261389f81613866565b9050919050565b7f5748414c4546494e444552204552524f523a205377617020616d6f756e7420635f8201527f616e6e6f74206265206c6f776572207468616e20302e3030312520746f74616c60208201527f20737570706c792e000000000000000000000000000000000000000000000000604082015250565b5f613926604883612e5f565b9150613931826138a6565b606082019050919050565b5f6020820190508181035f8301526139538161391a565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f7420736574206d615f8201527f782073656c6c20616d6f756e74206c6f776572207468616e20302e3125000000602082015250565b5f6139b4603d83612e5f565b91506139bf8261395a565b604082019050919050565b5f6020820190508181035f8301526139e1816139a8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a42602683612e5f565b9150613a4d826139e8565b604082019050919050565b5f6020820190508181035f830152613a6f81613a36565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613ad0602483612e5f565b9150613adb82613a76565b604082019050919050565b5f6020820190508181035f830152613afd81613ac4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613b5e602283612e5f565b9150613b6982613b04565b604082019050919050565b5f6020820190508181035f830152613b8b81613b52565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f613bc6601d83612e5f565b9150613bd182613b92565b602082019050919050565b5f6020820190508181035f830152613bf381613bba565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c54602583612e5f565b9150613c5f82613bfa565b604082019050919050565b5f6020820190508181035f830152613c8181613c48565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613ce2602383612e5f565b9150613ced82613c88565b604082019050919050565b5f6020820190508181035f830152613d0f81613cd6565b9050919050565b7f616d6f756e74206d7573742062652067726561746572207468616e20300000005f82015250565b5f613d4a601d83612e5f565b9150613d5582613d16565b602082019050919050565b5f6020820190508181035f830152613d7781613d3e565b9050919050565b7f5748414c4546494e444552204552524f523a2054726164696e67206973206e6f5f8201527f74206163746976652e0000000000000000000000000000000000000000000000602082015250565b5f613dd8602983612e5f565b9150613de382613d7e565b604082019050919050565b5f6020820190508181035f830152613e0581613dcc565b9050919050565b7f5748414c4546494e444552204552524f523a2054726164696e6720697320656e5f8201527f61626c6564000000000000000000000000000000000000000000000000000000602082015250565b5f613e66602583612e5f565b9150613e7182613e0c565b604082019050919050565b5f6020820190508181035f830152613e9381613e5a565b9050919050565b7f5748414c4546494e444552204552524f523a20427579207472616e73666572205f8201527f616d6f756e74206578636565647320746865206d6178206275792e0000000000602082015250565b5f613ef4603b83612e5f565b9150613eff82613e9a565b604082019050919050565b5f6020820190508181035f830152613f2181613ee8565b9050919050565b7f5748414c4546494e444552204552524f523a2043616e6e6f74204578636565645f8201527f206d61782077616c6c6574000000000000000000000000000000000000000000602082015250565b5f613f82602b83612e5f565b9150613f8d82613f28565b604082019050919050565b5f6020820190508181035f830152613faf81613f76565b9050919050565b7f5748414c4546494e444552204552524f523a2053656c6c207472616e736665725f8201527f20616d6f756e74206578636565647320746865206d61782073656c6c2e000000602082015250565b5f614010603d83612e5f565b915061401b82613fb6565b604082019050919050565b5f6020820190508181035f83015261403d81614004565b9050919050565b5f61404e82612eff565b915061405983612eff565b925082820390508181111561407157614070613385565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6140ab602083612e5f565b91506140b682614077565b602082019050919050565b5f6020820190508181035f8301526140d88161409f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f614139602683612e5f565b9150614144826140df565b604082019050919050565b5f6020820190508181035f8301526141668161412d565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506141d581612e00565b92915050565b5f602082840312156141f0576141ef612dcc565b5b5f6141fd848285016141c7565b91505092915050565b5f819050919050565b5f61422961422461421f84614206565b61310a565b612eff565b9050919050565b6142398161420f565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61427181612def565b82525050565b5f6142828383614268565b60208301905092915050565b5f602082019050919050565b5f6142a48261423f565b6142ae8185614249565b93506142b983614259565b805f5b838110156142e95781516142d08882614277565b97506142db8361428e565b9250506001810190506142bc565b5085935050505092915050565b5f60a0820190506143095f830188612fa3565b6143166020830187614230565b8181036040830152614328818661429a565b90506143376060830185612fcb565b6143446080830184612fa3565b969550505050505056fea2646970667358221220cc49efcdba81bb87e48fbe14d3cc55e9a0887be47ac8453aaa25e26f13fc4cc164736f6c63430008140033
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.