ERC-20
Overview
Max Total Supply
6,593,947,288 RLB2.0
Holders
16
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
259,232,501.845425611 RLB2.0Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Rollbit2
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* __ _ |@@| / \ \--/ __ ) O|----| | __ / / \ }{ /\ )_ / _\ )/ /\__/\ \__O (__ |/ (--/\--) \__/ / _)( )(_ `---''---` 2.0’s Most Degenerate Coin https://t.me/playrollbit https://twitter.com/rollbit2com https://www.rollbit2.com/ */ // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol 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); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; 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; } // File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol 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; } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: contracts/Rollbit2.sol /* https://t.me/playrollbit https://twitter.com/rollbit2com https://www.rollbit2.com/ */ pragma solidity ^0.8.9; contract Rollbit2 is Context, IERC20, Ownable { using SafeMath for uint256; string private constant _name = unicode"Rollbit 2.0"; string private constant _symbol = unicode"RLB2.0"; mapping(address => uint256) private _rOwned; mapping(address => uint256) private _tOwned; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isBlacklisted; uint8 private constant _decimals = 9; uint256 private constant MAX = ~uint256(0); uint256 private constant _tTotal = 6_593_947_288 * 10 ** _decimals; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; uint256 private _redisFeeOnBuy = 0; uint256 private _taxFeeOnBuy = 2; uint256 private _redisFeeOnSell = 0; uint256 private _taxFeeOnSell = 2; uint256 private _redisFee = _redisFeeOnSell; uint256 private _taxFee = _taxFeeOnSell; uint256 private _previousredisFee = _redisFee; uint256 private _previoustaxFee = _taxFee; mapping(address => uint256) public _buyMap; address payable private _developmentAddress = payable(0x7688E279893E8cEaFa645a96a2b46ED462125702); address payable private _marketingAddress = payable(0x7688E279893E8cEaFa645a96a2b46ED462125702); IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool private tradingOpen = false; bool private inSwap = false; bool private swapEnabled = true; uint256 public _maxTxAmount = 2 * (_tTotal / 100); uint256 public _maxWalletSize = 2 * (_tTotal / 100); uint256 public _swapTokensAtAmount = 20 * (_tTotal / 1000); event MaxTxAmountUpdated(uint256 _maxTxAmount); modifier lockTheSwap() { inSwap = true; _; inSwap = false; } constructor() { _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[_developmentAddress] = true; _isExcludedFromFee[_marketingAddress] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function decimals() public pure returns (uint8) { return _decimals; } function symbol() public pure returns (string memory) { return _symbol; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return tokenFromReflection(_rOwned[account]); } function transfer( address recipient, uint256 amount ) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance( address owner, address spender ) public view override returns (uint256) { return _allowances[owner][spender]; } function approve( address spender, uint256 amount ) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } function addLiquidityAndLock( uint256 tokenAmount, uint256 ethAmount, address lockContractAddress ) external onlyOwner { // Approve Uniswap router to transfer tokens _approve(address(this), address(uniswapV2Router), tokenAmount); // Add liquidity (, , uint256 liquidity) = uniswapV2Router.addLiquidityETH{ value: ethAmount }(address(this), tokenAmount, 0, 0, address(this), block.timestamp); // Transfer LP tokens to the lock contract IERC20(uniswapV2Pair).transfer(lockContractAddress, liquidity); } modifier onlyNonBlacklisted() { require(!_isBlacklisted[_msgSender()], "Address is blacklisted."); _; } function setBlacklisted( address account, bool blacklisted ) public onlyOwner { _isBlacklisted[account] = blacklisted; } function isBlacklisted(address account) public view returns (bool) { return _isBlacklisted[account]; } function tokenFromReflection( uint256 rAmount ) private view returns (uint256) { require( rAmount <= _rTotal, "Amount must be less than total reflections" ); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function removeAllFee() private { if (_redisFee == 0 && _taxFee == 0) return; _previousredisFee = _redisFee; _previoustaxFee = _taxFee; _redisFee = 0; _taxFee = 0; } function restoreAllFee() private { _redisFee = _previousredisFee; _taxFee = _previoustaxFee; } function _approve(address owner, address spender, uint256 amount) private { 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); } function _transfer( address from, address to, uint256 amount ) private onlyNonBlacklisted { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); require( amount <= balanceOf(from), "Transfer amount exceeds sender's balance" ); if (from != owner() && to != owner()) { //Trade start check if (!tradingOpen) { require( from == owner(), "TOKEN: This account cannot send tokens until trading is enabled" ); } require(amount <= _maxTxAmount, "TOKEN: Max Transaction Limit"); if (to != uniswapV2Pair) { require( balanceOf(to) + amount < _maxWalletSize, "TOKEN: Balance exceeds wallet size!" ); } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _swapTokensAtAmount; if (contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } if ( canSwap && !inSwap && from != uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to] ) { swapTokensForEth(contractTokenBalance); uint256 contractETHBalance = address(this).balance; if (contractETHBalance > 0) { sendETHToFee(address(this).balance); } } } bool takeFee = true; //Transfer Tokens if ( (_isExcludedFromFee[from] || _isExcludedFromFee[to]) || (from != uniswapV2Pair && to != uniswapV2Pair) ) { takeFee = false; } else { //Set Fee for Buys if (from == uniswapV2Pair && to != address(uniswapV2Router)) { _redisFee = _redisFeeOnBuy; _taxFee = _taxFeeOnBuy; } //Set Fee for Sells if (to == uniswapV2Pair && from != address(uniswapV2Router)) { _redisFee = _redisFeeOnSell; _taxFee = _taxFeeOnSell; } } _tokenTransfer(from, to, amount, takeFee); } function swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { _marketingAddress.transfer(amount); } //Camelot Dex Router 0xc873fEcbd354f5A56E00E710B90EF4201db2448d function setTrading(bool _tradingOpen) public onlyOwner { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); tradingOpen = _tradingOpen; } function manualswap() external { require( _msgSender() == _developmentAddress || _msgSender() == _marketingAddress ); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualsend() external { require( _msgSender() == _developmentAddress || _msgSender() == _marketingAddress ); uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function _tokenTransfer( address sender, address recipient, uint256 amount, bool takeFee ) private { if (!takeFee) removeAllFee(); _transferStandard(sender, recipient, amount); if (!takeFee) restoreAllFee(); } function _transferStandard( address sender, address recipient, uint256 tAmount ) private { ( uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tTeam ) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeTeam(tTeam); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _takeTeam(uint256 tTeam) private { uint256 currentRate = _getRate(); uint256 rTeam = tTeam.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rTeam); } function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } receive() external payable {} function _getValues( uint256 tAmount ) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tTeam) = _getTValues( tAmount, _redisFee, _taxFee ); uint256 currentRate = _getRate(); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues( tAmount, tFee, tTeam, currentRate ); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tTeam); } function _getTValues( uint256 tAmount, uint256 redisFee, uint256 taxFee ) private pure returns (uint256, uint256, uint256) { uint256 tFee = tAmount.mul(redisFee).div(100); uint256 tTeam = tAmount.mul(taxFee).div(100); uint256 tTransferAmount = tAmount.sub(tFee).sub(tTeam); return (tTransferAmount, tFee, tTeam); } function _getRValues( uint256 tAmount, uint256 tFee, uint256 tTeam, uint256 currentRate ) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rTeam = tTeam.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rTeam); return (rAmount, rTransferAmount, rFee); } function _getRate() private view returns (uint256) { (uint256 rSupply, uint256 tSupply) = _getCurrentSupply(); return rSupply.div(tSupply); } function _getCurrentSupply() private view returns (uint256, uint256) { uint256 rSupply = _rTotal; uint256 tSupply = _tTotal; if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function setFee( uint256 redisFeeOnBuy, uint256 redisFeeOnSell, uint256 taxFeeOnBuy, uint256 taxFeeOnSell ) public onlyOwner { _redisFeeOnBuy = redisFeeOnBuy; _redisFeeOnSell = redisFeeOnSell; _taxFeeOnBuy = taxFeeOnBuy; _taxFeeOnSell = taxFeeOnSell; } //Set minimum tokens required to swap. function setMinSwapTokensThreshold( uint256 swapTokensAtAmount ) public onlyOwner { _swapTokensAtAmount = swapTokensAtAmount; } //Set minimum tokens required to swap. function toggleSwap(bool _swapEnabled) public onlyOwner { swapEnabled = _swapEnabled; } //Set maximum transaction function setMaxTxnAmount(uint256 maxTxAmount) public onlyOwner { _maxTxAmount = maxTxAmount; } function setMaxWalletSize(uint256 maxWalletSize) public onlyOwner { _maxWalletSize = maxWalletSize; } function setMaxAll() public onlyOwner { _maxWalletSize = _tTotal; _maxTxAmount = _tTotal; } }
{ "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":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_buyMap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"uint256","name":"ethAmount","type":"uint256"},{"internalType":"address","name":"lockContractAddress","type":"address"}],"name":"addLiquidityAndLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"blacklisted","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"redisFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"redisFeeOnSell","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnBuy","type":"uint256"},{"internalType":"uint256","name":"taxFeeOnSell","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"setMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setMinSwapTokensThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_tradingOpen","type":"bool"}],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bool","name":"_swapEnabled","type":"bool"}],"name":"toggleSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526009600a62000014919062000794565b64018907a698620000269190620007e5565b6000196200003591906200085f565b60001962000044919062000897565b600655600060085560026009556000600a556002600b55600a54600c55600b54600d55600c54600e55600d54600f55737688e279893e8ceafa645a96a2b46ed462125702601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737688e279893e8ceafa645a96a2b46ed462125702601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006014806101000a81548160ff0219169083151502179055506000601460156101000a81548160ff0219169083151502179055506001601460166101000a81548160ff02191690831515021790555060646009600a6200017f919062000794565b64018907a698620001919190620007e5565b6200019d9190620008d2565b6002620001ab9190620007e5565b60155560646009600a620001c0919062000794565b64018907a698620001d29190620007e5565b620001de9190620008d2565b6002620001ec9190620007e5565b6016556103e86009600a62000202919062000794565b64018907a698620002149190620007e5565b620002209190620008d2565b60146200022e9190620007e5565b6017553480156200023e57600080fd5b506200025f620002536200050560201b60201c565b6200050d60201b60201c565b60065460016000620002766200050560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600160046000620002ca620005d160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600460003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160046000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620004776200050560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009600a620004d6919062000794565b64018907a698620004e89190620007e5565b604051620004f791906200091b565b60405180910390a362000938565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620006885780860481111562000660576200065f620005fa565b5b6001851615620006705780820291505b8081029050620006808562000629565b945062000640565b94509492505050565b600082620006a3576001905062000776565b81620006b3576000905062000776565b8160018114620006cc5760028114620006d7576200070d565b600191505062000776565b60ff841115620006ec57620006eb620005fa565b5b8360020a915084821115620007065762000705620005fa565b5b5062000776565b5060208310610133831016604e8410600b8410161715620007475782820a905083811115620007415762000740620005fa565b5b62000776565b62000756848484600162000636565b9250905081840481111562000770576200076f620005fa565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620007a1826200077d565b9150620007ae8362000787565b9250620007dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000691565b905092915050565b6000620007f2826200077d565b9150620007ff836200077d565b92508282026200080f816200077d565b91508282048414831517620008295762000828620005fa565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200086c826200077d565b915062000879836200077d565b9250826200088c576200088b62000830565b5b828206905092915050565b6000620008a4826200077d565b9150620008b1836200077d565b9250828203905081811115620008cc57620008cb620005fa565b5b92915050565b6000620008df826200077d565b9150620008ec836200077d565b925082620008ff57620008fe62000830565b5b828204905092915050565b62000915816200077d565b82525050565b60006020820190506200093260008301846200090a565b92915050565b61393280620009486000396000f3fe6080604052600436106101d15760003560e01c80637f2feddc116100f7578063a37a74cc11610095578063dd62ed3e11610064578063dd62ed3e14610637578063ea1644d514610674578063f2fde38b1461069d578063fe575a87146106c6576101d8565b8063a37a74cc14610591578063a9059cbb146105ba578063c3c8cd80146105f7578063d01dd6d21461060e576101d8565b80638f9a55c0116100d15780638f9a55c0146104e957806395d89b411461051457806398a5c3151461053f578063a2a957bb14610568576101d8565b80637f2feddc146104585780638da5cb5b146104955780638f70ccf7146104c0576101d8565b806341c2bd551161016f57806370a082311161013e57806370a08231146103b0578063715018a6146103ed57806374010ece146104045780637d1db4a51461042d576101d8565b806341c2bd551461032e57806349bd5a5e146103455780636d8aa8f8146103705780636fc3eaec14610399576101d8565b806318160ddd116101ab57806318160ddd1461027057806323b872dd1461029b5780632fd689e3146102d8578063313ce56714610303576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610703565b6040516101ff919061275f565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a919061281a565b610740565b60405161023c9190612875565b60405180910390f35b34801561025157600080fd5b5061025a61075e565b60405161026791906128ef565b60405180910390f35b34801561027c57600080fd5b50610285610784565b6040516102929190612919565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612934565b6107a9565b6040516102cf9190612875565b60405180910390f35b3480156102e457600080fd5b506102ed610882565b6040516102fa9190612919565b60405180910390f35b34801561030f57600080fd5b50610318610888565b60405161032591906129a3565b60405180910390f35b34801561033a57600080fd5b50610343610891565b005b34801561035157600080fd5b5061035a6108e3565b60405161036791906129cd565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612a14565b610909565b005b3480156103a557600080fd5b506103ae61092e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612a41565b6109ff565b6040516103e49190612919565b60405180910390f35b3480156103f957600080fd5b50610402610a50565b005b34801561041057600080fd5b5061042b60048036038101906104269190612a6e565b610a64565b005b34801561043957600080fd5b50610442610a76565b60405161044f9190612919565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612a41565b610a7c565b60405161048c9190612919565b60405180910390f35b3480156104a157600080fd5b506104aa610a94565b6040516104b791906129cd565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612a14565b610abd565b005b3480156104f557600080fd5b506104fe610cd6565b60405161050b9190612919565b60405180910390f35b34801561052057600080fd5b50610529610cdc565b604051610536919061275f565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612a6e565b610d19565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612a9b565b610d2b565b005b34801561059d57600080fd5b506105b860048036038101906105b39190612b02565b610d55565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061281a565b610ee1565b6040516105ee9190612875565b60405180910390f35b34801561060357600080fd5b5061060c610eff565b005b34801561061a57600080fd5b5061063560048036038101906106309190612b55565b610fd8565b005b34801561064357600080fd5b5061065e60048036038101906106599190612b95565b61103b565b60405161066b9190612919565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612a6e565b6110c2565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612a41565b6110d4565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612a41565b611157565b6040516106fa9190612875565b60405180910390f35b60606040518060400160405280600b81526020017f526f6c6c62697420322e30000000000000000000000000000000000000000000815250905090565b600061075461074d6111ad565b84846111b5565b6001905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a6107949190612d37565b64018907a6986107a49190612d82565b905090565b60006107b684848461137e565b610877846107c26111ad565b610872856040518060600160405280602881526020016138d560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108286111ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bfd9092919063ffffffff16565b6111b5565b600190509392505050565b60175481565b60006009905090565b610899611c52565b6009600a6108a79190612d37565b64018907a6986108b79190612d82565b6016819055506009600a6108cb9190612d37565b64018907a6986108db9190612d82565b601581905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610911611c52565b80601460166101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661096f6111ad565b73ffffffffffffffffffffffffffffffffffffffff1614806109e55750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109cd6111ad565b73ffffffffffffffffffffffffffffffffffffffff16145b6109ee57600080fd5b60004790506109fc81611cd0565b50565b6000610a49600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3c565b9050919050565b610a58611c52565b610a626000611daa565b565b610a6c611c52565b8060158190555050565b60155481565b60106020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ac5611c52565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8e9190612dd9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c199190612dd9565b6040518363ffffffff1660e01b8152600401610c36929190612e06565b6020604051808303816000875af1158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c799190612dd9565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816014806101000a81548160ff0219169083151502179055505050565b60165481565b60606040518060400160405280600681526020017f524c42322e300000000000000000000000000000000000000000000000000000815250905090565b610d21611c52565b8060178190555050565b610d33611c52565b8360088190555082600a819055508160098190555080600b8190555050505050565b610d5d611c52565b610d8a30601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856111b5565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71984308760008030426040518863ffffffff1660e01b8152600401610df396959493929190612e6a565b60606040518083038185885af1158015610e11573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e369190612ee0565b92505050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610e97929190612f33565b6020604051808303816000875af1158015610eb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eda9190612f71565b5050505050565b6000610ef5610eee6111ad565b848461137e565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f406111ad565b73ffffffffffffffffffffffffffffffffffffffff161480610fb65750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f9e6111ad565b73ffffffffffffffffffffffffffffffffffffffff16145b610fbf57600080fd5b6000610fca306109ff565b9050610fd581611e6e565b50565b610fe0611c52565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ca611c52565b8060168190555050565b6110dc611c52565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613010565b60405180910390fd5b61115481611daa565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906130a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613134565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113719190612919565b60405180910390a3505050565b6005600061138a6111ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906131a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613232565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e7906132c4565b60405180910390fd5b60008111611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613356565b60405180910390fd5b61153c836109ff565b81111561157e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611575906133e8565b60405180910390fd5b611586610a94565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115f457506115c4610a94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fc5760148054906101000a900460ff1661168157611613610a94565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116779061347a565b60405180910390fd5b5b6015548111156116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906134e6565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146117735760165481611728846109ff565b6117329190613506565b10611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906135ac565b60405180910390fd5b5b600061177e306109ff565b90506000601754821015905060155482106117995760155491505b8080156117b35750601460159054906101000a900460ff16155b801561180d5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118255750601460169054906101000a900460ff165b801561187b5750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118d15750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118f9576118df82611e6e565b600047905060008111156118f7576118f647611cd0565b5b505b50505b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119a35750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a565750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611a555750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611a645760009050611beb565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611b0f5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b2757600854600c81905550600954600d819055505b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611bd25750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611bea57600a54600c81905550600b54600d819055505b5b611bf7848484846120e7565b50505050565b6000838311158290611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c919061275f565b60405180910390fd5b5082840390509392505050565b611c5a6111ad565b73ffffffffffffffffffffffffffffffffffffffff16611c78610a94565b73ffffffffffffffffffffffffffffffffffffffff1614611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590613618565b60405180910390fd5b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d38573d6000803e3d6000fd5b5050565b6000600654821115611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a906136aa565b60405180910390fd5b6000611d8d612114565b9050611da2818461213f90919063ffffffff16565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460156101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611ea657611ea56136ca565b5b604051908082528060200260200182016040528015611ed45781602001602082028036833780820191505090505b5090503081600081518110611eec57611eeb6136f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb79190612dd9565b81600181518110611fcb57611fca6136f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061203230601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111b5565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120969594939291906137e6565b600060405180830381600087803b1580156120b057600080fd5b505af11580156120c4573d6000803e3d6000fd5b50505050506000601460156101000a81548160ff02191690831515021790555050565b806120f5576120f4612155565b5b612100848484612192565b8061210e5761210d61235d565b5b50505050565b6000806000612121612371565b91509150612138818361213f90919063ffffffff16565b9250505090565b6000818361214d919061386f565b905092915050565b6000600c5414801561216957506000600d54145b61219057600c54600e81905550600d54600f819055506000600c819055506000600d819055505b565b6000806000806000806121a48761240f565b95509550955095509550955061220286600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247790919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061229785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122e3816124a3565b6122ed8483612560565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161234a9190612919565b60405180910390a3505050505050505050565b600e54600c81905550600f54600d81905550565b6000806000600654905060006009600a61238b9190612d37565b64018907a69861239b9190612d82565b90506123cf6009600a6123ae9190612d37565b64018907a6986123be9190612d82565b60065461213f90919063ffffffff16565b821015612402576006546009600a6123e79190612d37565b64018907a6986123f79190612d82565b93509350505061240b565b81819350935050505b9091565b600080600080600080600080600061242c8a600c54600d5461259a565b925092509250600061243c612114565b9050600080600061244f8e878787612630565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000818361248591906138a0565b905092915050565b6000818361249b9190613506565b905092915050565b60006124ad612114565b905060006124c482846126b990919063ffffffff16565b905061251881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6125758260065461247790919063ffffffff16565b6006819055506125908160075461248d90919063ffffffff16565b6007819055505050565b6000806000806125c660646125b8888a6126b990919063ffffffff16565b61213f90919063ffffffff16565b905060006125f060646125e2888b6126b990919063ffffffff16565b61213f90919063ffffffff16565b905060006126198261260b858c61247790919063ffffffff16565b61247790919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061264985896126b990919063ffffffff16565b9050600061266086896126b990919063ffffffff16565b9050600061267787896126b990919063ffffffff16565b905060006126a082612692858761247790919063ffffffff16565b61247790919063ffffffff16565b9050838184965096509650505050509450945094915050565b600081836126c79190612d82565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127095780820151818401526020810190506126ee565b60008484015250505050565b6000601f19601f8301169050919050565b6000612731826126cf565b61273b81856126da565b935061274b8185602086016126eb565b61275481612715565b840191505092915050565b600060208201905081810360008301526127798184612726565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b182612786565b9050919050565b6127c1816127a6565b81146127cc57600080fd5b50565b6000813590506127de816127b8565b92915050565b6000819050919050565b6127f7816127e4565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b6000806040838503121561283157612830612781565b5b600061283f858286016127cf565b925050602061285085828601612805565b9150509250929050565b60008115159050919050565b61286f8161285a565b82525050565b600060208201905061288a6000830184612866565b92915050565b6000819050919050565b60006128b56128b06128ab84612786565b612890565b612786565b9050919050565b60006128c78261289a565b9050919050565b60006128d9826128bc565b9050919050565b6128e9816128ce565b82525050565b600060208201905061290460008301846128e0565b92915050565b612913816127e4565b82525050565b600060208201905061292e600083018461290a565b92915050565b60008060006060848603121561294d5761294c612781565b5b600061295b868287016127cf565b935050602061296c868287016127cf565b925050604061297d86828701612805565b9150509250925092565b600060ff82169050919050565b61299d81612987565b82525050565b60006020820190506129b86000830184612994565b92915050565b6129c7816127a6565b82525050565b60006020820190506129e260008301846129be565b92915050565b6129f18161285a565b81146129fc57600080fd5b50565b600081359050612a0e816129e8565b92915050565b600060208284031215612a2a57612a29612781565b5b6000612a38848285016129ff565b91505092915050565b600060208284031215612a5757612a56612781565b5b6000612a65848285016127cf565b91505092915050565b600060208284031215612a8457612a83612781565b5b6000612a9284828501612805565b91505092915050565b60008060008060808587031215612ab557612ab4612781565b5b6000612ac387828801612805565b9450506020612ad487828801612805565b9350506040612ae587828801612805565b9250506060612af687828801612805565b91505092959194509250565b600080600060608486031215612b1b57612b1a612781565b5b6000612b2986828701612805565b9350506020612b3a86828701612805565b9250506040612b4b868287016127cf565b9150509250925092565b60008060408385031215612b6c57612b6b612781565b5b6000612b7a858286016127cf565b9250506020612b8b858286016129ff565b9150509250929050565b60008060408385031215612bac57612bab612781565b5b6000612bba858286016127cf565b9250506020612bcb858286016127cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612c5b57808604811115612c3757612c36612bd5565b5b6001851615612c465780820291505b8081029050612c5485612c04565b9450612c1b565b94509492505050565b600082612c745760019050612d30565b81612c825760009050612d30565b8160018114612c985760028114612ca257612cd1565b6001915050612d30565b60ff841115612cb457612cb3612bd5565b5b8360020a915084821115612ccb57612cca612bd5565b5b50612d30565b5060208310610133831016604e8410600b8410161715612d065782820a905083811115612d0157612d00612bd5565b5b612d30565b612d138484846001612c11565b92509050818404811115612d2a57612d29612bd5565b5b81810290505b9392505050565b6000612d42826127e4565b9150612d4d83612987565b9250612d7a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612c64565b905092915050565b6000612d8d826127e4565b9150612d98836127e4565b9250828202612da6816127e4565b91508282048414831517612dbd57612dbc612bd5565b5b5092915050565b600081519050612dd3816127b8565b92915050565b600060208284031215612def57612dee612781565b5b6000612dfd84828501612dc4565b91505092915050565b6000604082019050612e1b60008301856129be565b612e2860208301846129be565b9392505050565b6000819050919050565b6000612e54612e4f612e4a84612e2f565b612890565b6127e4565b9050919050565b612e6481612e39565b82525050565b600060c082019050612e7f60008301896129be565b612e8c602083018861290a565b612e996040830187612e5b565b612ea66060830186612e5b565b612eb360808301856129be565b612ec060a083018461290a565b979650505050505050565b600081519050612eda816127ee565b92915050565b600080600060608486031215612ef957612ef8612781565b5b6000612f0786828701612ecb565b9350506020612f1886828701612ecb565b9250506040612f2986828701612ecb565b9150509250925092565b6000604082019050612f4860008301856129be565b612f55602083018461290a565b9392505050565b600081519050612f6b816129e8565b92915050565b600060208284031215612f8757612f86612781565b5b6000612f9584828501612f5c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ffa6026836126da565b915061300582612f9e565b604082019050919050565b6000602082019050818103600083015261302981612fed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061308c6024836126da565b915061309782613030565b604082019050919050565b600060208201905081810360008301526130bb8161307f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061311e6022836126da565b9150613129826130c2565b604082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f4164647265737320697320626c61636b6c69737465642e000000000000000000600082015250565b600061318a6017836126da565b915061319582613154565b602082019050919050565b600060208201905081810360008301526131b98161317d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061321c6025836126da565b9150613227826131c0565b604082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ae6023836126da565b91506132b982613252565b604082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133406029836126da565b915061334b826132e4565b604082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f5472616e7366657220616d6f756e7420657863656564732073656e646572277360008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b60006133d26028836126da565b91506133dd82613376565b604082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b6000613464603f836126da565b915061346f82613408565b604082019050919050565b6000602082019050818103600083015261349381613457565b9050919050565b7f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000600082015250565b60006134d0601c836126da565b91506134db8261349a565b602082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b6000613511826127e4565b915061351c836127e4565b925082820190508082111561353457613533612bd5565b5b92915050565b7f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008201527f7a65210000000000000000000000000000000000000000000000000000000000602082015250565b60006135966023836126da565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136026020836126da565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613694602a836126da565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61375d816127a6565b82525050565b600061376f8383613754565b60208301905092915050565b6000602082019050919050565b600061379382613728565b61379d8185613733565b93506137a883613744565b8060005b838110156137d95781516137c08882613763565b97506137cb8361377b565b9250506001810190506137ac565b5085935050505092915050565b600060a0820190506137fb600083018861290a565b6138086020830187612e5b565b818103604083015261381a8186613788565b905061382960608301856129be565b613836608083018461290a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061387a826127e4565b9150613885836127e4565b92508261389557613894613840565b5b828204905092915050565b60006138ab826127e4565b91506138b6836127e4565b92508282039050818111156138ce576138cd612bd5565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e7238ab3f7a4c887359108e7c1644b811290c9d86581c1cf5ff38985286e335564736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c80637f2feddc116100f7578063a37a74cc11610095578063dd62ed3e11610064578063dd62ed3e14610637578063ea1644d514610674578063f2fde38b1461069d578063fe575a87146106c6576101d8565b8063a37a74cc14610591578063a9059cbb146105ba578063c3c8cd80146105f7578063d01dd6d21461060e576101d8565b80638f9a55c0116100d15780638f9a55c0146104e957806395d89b411461051457806398a5c3151461053f578063a2a957bb14610568576101d8565b80637f2feddc146104585780638da5cb5b146104955780638f70ccf7146104c0576101d8565b806341c2bd551161016f57806370a082311161013e57806370a08231146103b0578063715018a6146103ed57806374010ece146104045780637d1db4a51461042d576101d8565b806341c2bd551461032e57806349bd5a5e146103455780636d8aa8f8146103705780636fc3eaec14610399576101d8565b806318160ddd116101ab57806318160ddd1461027057806323b872dd1461029b5780632fd689e3146102d8578063313ce56714610303576101d8565b806306fdde03146101dd578063095ea7b3146102085780631694505e14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f2610703565b6040516101ff919061275f565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a919061281a565b610740565b60405161023c9190612875565b60405180910390f35b34801561025157600080fd5b5061025a61075e565b60405161026791906128ef565b60405180910390f35b34801561027c57600080fd5b50610285610784565b6040516102929190612919565b60405180910390f35b3480156102a757600080fd5b506102c260048036038101906102bd9190612934565b6107a9565b6040516102cf9190612875565b60405180910390f35b3480156102e457600080fd5b506102ed610882565b6040516102fa9190612919565b60405180910390f35b34801561030f57600080fd5b50610318610888565b60405161032591906129a3565b60405180910390f35b34801561033a57600080fd5b50610343610891565b005b34801561035157600080fd5b5061035a6108e3565b60405161036791906129cd565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190612a14565b610909565b005b3480156103a557600080fd5b506103ae61092e565b005b3480156103bc57600080fd5b506103d760048036038101906103d29190612a41565b6109ff565b6040516103e49190612919565b60405180910390f35b3480156103f957600080fd5b50610402610a50565b005b34801561041057600080fd5b5061042b60048036038101906104269190612a6e565b610a64565b005b34801561043957600080fd5b50610442610a76565b60405161044f9190612919565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612a41565b610a7c565b60405161048c9190612919565b60405180910390f35b3480156104a157600080fd5b506104aa610a94565b6040516104b791906129cd565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e29190612a14565b610abd565b005b3480156104f557600080fd5b506104fe610cd6565b60405161050b9190612919565b60405180910390f35b34801561052057600080fd5b50610529610cdc565b604051610536919061275f565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612a6e565b610d19565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612a9b565b610d2b565b005b34801561059d57600080fd5b506105b860048036038101906105b39190612b02565b610d55565b005b3480156105c657600080fd5b506105e160048036038101906105dc919061281a565b610ee1565b6040516105ee9190612875565b60405180910390f35b34801561060357600080fd5b5061060c610eff565b005b34801561061a57600080fd5b5061063560048036038101906106309190612b55565b610fd8565b005b34801561064357600080fd5b5061065e60048036038101906106599190612b95565b61103b565b60405161066b9190612919565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612a6e565b6110c2565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612a41565b6110d4565b005b3480156106d257600080fd5b506106ed60048036038101906106e89190612a41565b611157565b6040516106fa9190612875565b60405180910390f35b60606040518060400160405280600b81526020017f526f6c6c62697420322e30000000000000000000000000000000000000000000815250905090565b600061075461074d6111ad565b84846111b5565b6001905092915050565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006009600a6107949190612d37565b64018907a6986107a49190612d82565b905090565b60006107b684848461137e565b610877846107c26111ad565b610872856040518060600160405280602881526020016138d560289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006108286111ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bfd9092919063ffffffff16565b6111b5565b600190509392505050565b60175481565b60006009905090565b610899611c52565b6009600a6108a79190612d37565b64018907a6986108b79190612d82565b6016819055506009600a6108cb9190612d37565b64018907a6986108db9190612d82565b601581905550565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610911611c52565b80601460166101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661096f6111ad565b73ffffffffffffffffffffffffffffffffffffffff1614806109e55750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109cd6111ad565b73ffffffffffffffffffffffffffffffffffffffff16145b6109ee57600080fd5b60004790506109fc81611cd0565b50565b6000610a49600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611d3c565b9050919050565b610a58611c52565b610a626000611daa565b565b610a6c611c52565b8060158190555050565b60155481565b60106020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ac5611c52565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b8e9190612dd9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c199190612dd9565b6040518363ffffffff1660e01b8152600401610c36929190612e06565b6020604051808303816000875af1158015610c55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c799190612dd9565b601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816014806101000a81548160ff0219169083151502179055505050565b60165481565b60606040518060400160405280600681526020017f524c42322e300000000000000000000000000000000000000000000000000000815250905090565b610d21611c52565b8060178190555050565b610d33611c52565b8360088190555082600a819055508160098190555080600b8190555050505050565b610d5d611c52565b610d8a30601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856111b5565b6000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71984308760008030426040518863ffffffff1660e01b8152600401610df396959493929190612e6a565b60606040518083038185885af1158015610e11573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e369190612ee0565b92505050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b8152600401610e97929190612f33565b6020604051808303816000875af1158015610eb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eda9190612f71565b5050505050565b6000610ef5610eee6111ad565b848461137e565b6001905092915050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f406111ad565b73ffffffffffffffffffffffffffffffffffffffff161480610fb65750601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f9e6111ad565b73ffffffffffffffffffffffffffffffffffffffff16145b610fbf57600080fd5b6000610fca306109ff565b9050610fd581611e6e565b50565b610fe0611c52565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6110ca611c52565b8060168190555050565b6110dc611c52565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613010565b60405180910390fd5b61115481611daa565b50565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b906130a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611293576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128a90613134565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113719190612919565b60405180910390a3505050565b6005600061138a6111ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611412576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611409906131a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613232565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e7906132c4565b60405180910390fd5b60008111611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613356565b60405180910390fd5b61153c836109ff565b81111561157e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611575906133e8565b60405180910390fd5b611586610a94565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115f457506115c4610a94565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156118fc5760148054906101000a900460ff1661168157611613610a94565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116779061347a565b60405180910390fd5b5b6015548111156116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906134e6565b60405180910390fd5b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146117735760165481611728846109ff565b6117329190613506565b10611772576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611769906135ac565b60405180910390fd5b5b600061177e306109ff565b90506000601754821015905060155482106117995760155491505b8080156117b35750601460159054906101000a900460ff16155b801561180d5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118255750601460169054906101000a900460ff165b801561187b5750600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118d15750600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118f9576118df82611e6e565b600047905060008111156118f7576118f647611cd0565b5b505b50505b600060019050600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806119a35750600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80611a565750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614158015611a555750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b15611a645760009050611beb565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148015611b0f5750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b15611b2757600854600c81905550600954600d819055505b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611bd25750601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611bea57600a54600c81905550600b54600d819055505b5b611bf7848484846120e7565b50505050565b6000838311158290611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c919061275f565b60405180910390fd5b5082840390509392505050565b611c5a6111ad565b73ffffffffffffffffffffffffffffffffffffffff16611c78610a94565b73ffffffffffffffffffffffffffffffffffffffff1614611cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc590613618565b60405180910390fd5b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611d38573d6000803e3d6000fd5b5050565b6000600654821115611d83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7a906136aa565b60405180910390fd5b6000611d8d612114565b9050611da2818461213f90919063ffffffff16565b915050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601460156101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611ea657611ea56136ca565b5b604051908082528060200260200182016040528015611ed45781602001602082028036833780820191505090505b5090503081600081518110611eec57611eeb6136f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f93573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fb79190612dd9565b81600181518110611fcb57611fca6136f9565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061203230601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846111b5565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016120969594939291906137e6565b600060405180830381600087803b1580156120b057600080fd5b505af11580156120c4573d6000803e3d6000fd5b50505050506000601460156101000a81548160ff02191690831515021790555050565b806120f5576120f4612155565b5b612100848484612192565b8061210e5761210d61235d565b5b50505050565b6000806000612121612371565b91509150612138818361213f90919063ffffffff16565b9250505090565b6000818361214d919061386f565b905092915050565b6000600c5414801561216957506000600d54145b61219057600c54600e81905550600d54600f819055506000600c819055506000600d819055505b565b6000806000806000806121a48761240f565b95509550955095509550955061220286600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461247790919063ffffffff16565b600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061229785600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248d90919063ffffffff16565b600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506122e3816124a3565b6122ed8483612560565b8773ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161234a9190612919565b60405180910390a3505050505050505050565b600e54600c81905550600f54600d81905550565b6000806000600654905060006009600a61238b9190612d37565b64018907a69861239b9190612d82565b90506123cf6009600a6123ae9190612d37565b64018907a6986123be9190612d82565b60065461213f90919063ffffffff16565b821015612402576006546009600a6123e79190612d37565b64018907a6986123f79190612d82565b93509350505061240b565b81819350935050505b9091565b600080600080600080600080600061242c8a600c54600d5461259a565b925092509250600061243c612114565b9050600080600061244f8e878787612630565b9250925092508282828989899c509c509c509c509c509c505050505050505091939550919395565b6000818361248591906138a0565b905092915050565b6000818361249b9190613506565b905092915050565b60006124ad612114565b905060006124c482846126b990919063ffffffff16565b905061251881600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461248d90919063ffffffff16565b600160003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505050565b6125758260065461247790919063ffffffff16565b6006819055506125908160075461248d90919063ffffffff16565b6007819055505050565b6000806000806125c660646125b8888a6126b990919063ffffffff16565b61213f90919063ffffffff16565b905060006125f060646125e2888b6126b990919063ffffffff16565b61213f90919063ffffffff16565b905060006126198261260b858c61247790919063ffffffff16565b61247790919063ffffffff16565b905080838395509550955050505093509350939050565b60008060008061264985896126b990919063ffffffff16565b9050600061266086896126b990919063ffffffff16565b9050600061267787896126b990919063ffffffff16565b905060006126a082612692858761247790919063ffffffff16565b61247790919063ffffffff16565b9050838184965096509650505050509450945094915050565b600081836126c79190612d82565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127095780820151818401526020810190506126ee565b60008484015250505050565b6000601f19601f8301169050919050565b6000612731826126cf565b61273b81856126da565b935061274b8185602086016126eb565b61275481612715565b840191505092915050565b600060208201905081810360008301526127798184612726565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127b182612786565b9050919050565b6127c1816127a6565b81146127cc57600080fd5b50565b6000813590506127de816127b8565b92915050565b6000819050919050565b6127f7816127e4565b811461280257600080fd5b50565b600081359050612814816127ee565b92915050565b6000806040838503121561283157612830612781565b5b600061283f858286016127cf565b925050602061285085828601612805565b9150509250929050565b60008115159050919050565b61286f8161285a565b82525050565b600060208201905061288a6000830184612866565b92915050565b6000819050919050565b60006128b56128b06128ab84612786565b612890565b612786565b9050919050565b60006128c78261289a565b9050919050565b60006128d9826128bc565b9050919050565b6128e9816128ce565b82525050565b600060208201905061290460008301846128e0565b92915050565b612913816127e4565b82525050565b600060208201905061292e600083018461290a565b92915050565b60008060006060848603121561294d5761294c612781565b5b600061295b868287016127cf565b935050602061296c868287016127cf565b925050604061297d86828701612805565b9150509250925092565b600060ff82169050919050565b61299d81612987565b82525050565b60006020820190506129b86000830184612994565b92915050565b6129c7816127a6565b82525050565b60006020820190506129e260008301846129be565b92915050565b6129f18161285a565b81146129fc57600080fd5b50565b600081359050612a0e816129e8565b92915050565b600060208284031215612a2a57612a29612781565b5b6000612a38848285016129ff565b91505092915050565b600060208284031215612a5757612a56612781565b5b6000612a65848285016127cf565b91505092915050565b600060208284031215612a8457612a83612781565b5b6000612a9284828501612805565b91505092915050565b60008060008060808587031215612ab557612ab4612781565b5b6000612ac387828801612805565b9450506020612ad487828801612805565b9350506040612ae587828801612805565b9250506060612af687828801612805565b91505092959194509250565b600080600060608486031215612b1b57612b1a612781565b5b6000612b2986828701612805565b9350506020612b3a86828701612805565b9250506040612b4b868287016127cf565b9150509250925092565b60008060408385031215612b6c57612b6b612781565b5b6000612b7a858286016127cf565b9250506020612b8b858286016129ff565b9150509250929050565b60008060408385031215612bac57612bab612781565b5b6000612bba858286016127cf565b9250506020612bcb858286016127cf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115612c5b57808604811115612c3757612c36612bd5565b5b6001851615612c465780820291505b8081029050612c5485612c04565b9450612c1b565b94509492505050565b600082612c745760019050612d30565b81612c825760009050612d30565b8160018114612c985760028114612ca257612cd1565b6001915050612d30565b60ff841115612cb457612cb3612bd5565b5b8360020a915084821115612ccb57612cca612bd5565b5b50612d30565b5060208310610133831016604e8410600b8410161715612d065782820a905083811115612d0157612d00612bd5565b5b612d30565b612d138484846001612c11565b92509050818404811115612d2a57612d29612bd5565b5b81810290505b9392505050565b6000612d42826127e4565b9150612d4d83612987565b9250612d7a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612c64565b905092915050565b6000612d8d826127e4565b9150612d98836127e4565b9250828202612da6816127e4565b91508282048414831517612dbd57612dbc612bd5565b5b5092915050565b600081519050612dd3816127b8565b92915050565b600060208284031215612def57612dee612781565b5b6000612dfd84828501612dc4565b91505092915050565b6000604082019050612e1b60008301856129be565b612e2860208301846129be565b9392505050565b6000819050919050565b6000612e54612e4f612e4a84612e2f565b612890565b6127e4565b9050919050565b612e6481612e39565b82525050565b600060c082019050612e7f60008301896129be565b612e8c602083018861290a565b612e996040830187612e5b565b612ea66060830186612e5b565b612eb360808301856129be565b612ec060a083018461290a565b979650505050505050565b600081519050612eda816127ee565b92915050565b600080600060608486031215612ef957612ef8612781565b5b6000612f0786828701612ecb565b9350506020612f1886828701612ecb565b9250506040612f2986828701612ecb565b9150509250925092565b6000604082019050612f4860008301856129be565b612f55602083018461290a565b9392505050565b600081519050612f6b816129e8565b92915050565b600060208284031215612f8757612f86612781565b5b6000612f9584828501612f5c565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612ffa6026836126da565b915061300582612f9e565b604082019050919050565b6000602082019050818103600083015261302981612fed565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061308c6024836126da565b915061309782613030565b604082019050919050565b600060208201905081810360008301526130bb8161307f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061311e6022836126da565b9150613129826130c2565b604082019050919050565b6000602082019050818103600083015261314d81613111565b9050919050565b7f4164647265737320697320626c61636b6c69737465642e000000000000000000600082015250565b600061318a6017836126da565b915061319582613154565b602082019050919050565b600060208201905081810360008301526131b98161317d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061321c6025836126da565b9150613227826131c0565b604082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132ae6023836126da565b91506132b982613252565b604082019050919050565b600060208201905081810360008301526132dd816132a1565b9050919050565b7f5472616e7366657220616d6f756e74206d75737420626520677265617465722060008201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b60006133406029836126da565b915061334b826132e4565b604082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f5472616e7366657220616d6f756e7420657863656564732073656e646572277360008201527f2062616c616e6365000000000000000000000000000000000000000000000000602082015250565b60006133d26028836126da565b91506133dd82613376565b604082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b7f544f4b454e3a2054686973206163636f756e742063616e6e6f742073656e642060008201527f746f6b656e7320756e74696c2074726164696e6720697320656e61626c656400602082015250565b6000613464603f836126da565b915061346f82613408565b604082019050919050565b6000602082019050818103600083015261349381613457565b9050919050565b7f544f4b454e3a204d6178205472616e73616374696f6e204c696d697400000000600082015250565b60006134d0601c836126da565b91506134db8261349a565b602082019050919050565b600060208201905081810360008301526134ff816134c3565b9050919050565b6000613511826127e4565b915061351c836127e4565b925082820190508082111561353457613533612bd5565b5b92915050565b7f544f4b454e3a2042616c616e636520657863656564732077616c6c657420736960008201527f7a65210000000000000000000000000000000000000000000000000000000000602082015250565b60006135966023836126da565b91506135a18261353a565b604082019050919050565b600060208201905081810360008301526135c581613589565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006136026020836126da565b915061360d826135cc565b602082019050919050565b60006020820190508181036000830152613631816135f5565b9050919050565b7f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260008201527f65666c656374696f6e7300000000000000000000000000000000000000000000602082015250565b6000613694602a836126da565b915061369f82613638565b604082019050919050565b600060208201905081810360008301526136c381613687565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61375d816127a6565b82525050565b600061376f8383613754565b60208301905092915050565b6000602082019050919050565b600061379382613728565b61379d8185613733565b93506137a883613744565b8060005b838110156137d95781516137c08882613763565b97506137cb8361377b565b9250506001810190506137ac565b5085935050505092915050565b600060a0820190506137fb600083018861290a565b6138086020830187612e5b565b818103604083015261381a8186613788565b905061382960608301856129be565b613836608083018461290a565b9695505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061387a826127e4565b9150613885836127e4565b92508261389557613894613840565b5b828204905092915050565b60006138ab826127e4565b91506138b6836127e4565b92508282039050818111156138ce576138cd612bd5565b5b9291505056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220e7238ab3f7a4c887359108e7c1644b811290c9d86581c1cf5ff38985286e335564736f6c63430008120033
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.