Polygon Sponsored slots available. Book your slot here!
ERC-20
Overview
Max Total Supply
1,000,000,000,000,000 FIRE
Holders
719
Total Transfers
-
Market
Price
$0.00 @ 0.000000 POL
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
FireBall
Compiler Version
v0.7.4+commit.3f05b770
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-12 */ /** Fork of SAFEMOON */ pragma solidity 0.7.4; // SPDX-License-Identifier: Unlicensed interface IERC20 { 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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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 Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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; address private _previousOwner; uint256 private _lockTime; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } function geUnlockTime() public view returns (uint256) { return _lockTime; } //Locks the contract for owner for the amount of time provided function lock(uint256 time) public virtual onlyOwner { _previousOwner = _owner; _owner = address(0); _lockTime = block.timestamp + time; emit OwnershipTransferred(_owner, address(0)); } //Unlocks the contract for owner when _lockTime is exceeds function unlock() public virtual { require(_previousOwner == msg.sender, "You don't have permission to unlock"); require(block.timestamp > _lockTime , "Contract is locked until 7 days"); emit OwnershipTransferred(_owner, _previousOwner); _owner = _previousOwner; } } // 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; } // pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // 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); } // 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; } contract FireBall is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; 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 _isExcluded; address[] private _excluded; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 1000000000 * 10**6 * 10**9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string private _name = "FireBall"; string private _symbol = "FIRE"; uint8 private _decimals = 9; uint256 public _taxFee = 5; uint256 private _previousTaxFee = _taxFee; uint256 public _liquidityFee = 5; uint256 private _previousLiquidityFee = _liquidityFee; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxTxAmount = 5000000 * 10**6 * 10**9; uint256 private numTokensSellToAddToLiquidity = 500000 * 10**6 * 10**9; event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor () public { _rOwned[_msgSender()] = _rTotal; setRouter(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); //exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function setRouter(address router) public onlyOwner { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { if (_isExcluded[account]) return _tOwned[account]; 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 increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function isExcludedFromReward(address account) public view returns (bool) { return _isExcluded[account]; } function totalFees() public view returns (uint256) { return _tFeeTotal; } function deliver(uint256 tAmount) public { address sender = _msgSender(); require(!_isExcluded[sender], "Excluded addresses cannot call this function"); (uint256 rAmount,,,,,) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rTotal = _rTotal.sub(rAmount); _tFeeTotal = _tFeeTotal.add(tAmount); } function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns(uint256) { require(tAmount <= _tTotal, "Amount must be less than supply"); if (!deductTransferFee) { (uint256 rAmount,,,,,) = _getValues(tAmount); return rAmount; } else { (,uint256 rTransferAmount,,,,) = _getValues(tAmount); return rTransferAmount; } } function tokenFromReflection(uint256 rAmount) public view returns(uint256) { require(rAmount <= _rTotal, "Amount must be less than total reflections"); uint256 currentRate = _getRate(); return rAmount.div(currentRate); } function emergencyRewards(uint256 amount) external onlyOwner { _rTotal = _rTotal.add(amount); _tTotal = _tTotal.add(amount); _rOwned[address(this)] = _rOwned[address(this)].add(amount); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(amount); } function excludeFromReward(address account) public onlyOwner() { // require(account != 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 'We can not exclude Uniswap router.'); // require(account != 0x05fF2B0DB69458A0750badebc4f9e13aDd608C7F, 'We can not exclude Pancake router.'); require(account != 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff, 'We can not exclude Quickswap router.'); require(!_isExcluded[account], "Account is already excluded"); if(_rOwned[account] > 0) { _tOwned[account] = tokenFromReflection(_rOwned[account]); } _isExcluded[account] = true; _excluded.push(account); } function includeInReward(address account) external onlyOwner() { require(_isExcluded[account], "Account is already excluded"); for (uint256 i = 0; i < _excluded.length; i++) { if (_excluded[i] == account) { _excluded[i] = _excluded[_excluded.length - 1]; _tOwned[account] = 0; _isExcluded[account] = false; _excluded.pop(); break; } } } function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function sendRewards(address recipient, uint256 amount) external onlyOwner returns (bool) { _transfer(address(this), recipient, amount); return true; } function excludeFromFee(address account) public onlyOwner { _isExcludedFromFee[account] = true; } function includeInFee(address account) public onlyOwner { _isExcludedFromFee[account] = false; } function setTaxFeePercent(uint256 taxFee) external onlyOwner() { _taxFee = taxFee; } function setLiquidityFeePercent(uint256 liquidityFee) external onlyOwner() { _liquidityFee = liquidityFee; } function setMaxTxPercent(uint256 maxTxPercent) external onlyOwner() { _maxTxAmount = _tTotal.mul(maxTxPercent).div( 10**2 ); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _reflectFee(uint256 rFee, uint256 tFee) private { _rTotal = _rTotal.sub(rFee); _tFeeTotal = _tFeeTotal.add(tFee); } function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256) { (uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getTValues(tAmount); (uint256 rAmount, uint256 rTransferAmount, uint256 rFee) = _getRValues(tAmount, tFee, tLiquidity, _getRate()); return (rAmount, rTransferAmount, rFee, tTransferAmount, tFee, tLiquidity); } function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) { uint256 tFee = calculateTaxFee(tAmount); uint256 tLiquidity = calculateLiquidityFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee).sub(tLiquidity); return (tTransferAmount, tFee, tLiquidity); } function _getRValues(uint256 tAmount, uint256 tFee, uint256 tLiquidity, uint256 currentRate) private pure returns (uint256, uint256, uint256) { uint256 rAmount = tAmount.mul(currentRate); uint256 rFee = tFee.mul(currentRate); uint256 rLiquidity = tLiquidity.mul(currentRate); uint256 rTransferAmount = rAmount.sub(rFee).sub(rLiquidity); 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; for (uint256 i = 0; i < _excluded.length; i++) { if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal); rSupply = rSupply.sub(_rOwned[_excluded[i]]); tSupply = tSupply.sub(_tOwned[_excluded[i]]); } if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal); return (rSupply, tSupply); } function _takeLiquidity(uint256 tLiquidity) private { uint256 currentRate = _getRate(); uint256 rLiquidity = tLiquidity.mul(currentRate); _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity); if(_isExcluded[address(this)]) _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_taxFee).div( 10**2 ); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { return _amount.mul(_liquidityFee).div( 10**2 ); } function removeAllFee() private { if(_taxFee == 0 && _liquidityFee == 0) return; _previousTaxFee = _taxFee; _previousLiquidityFee = _liquidityFee; _taxFee = 0; _liquidityFee = 0; } function restoreAllFee() private { _taxFee = _previousTaxFee; _liquidityFee = _previousLiquidityFee; } function isExcludedFromFee(address account) public view returns(bool) { return _isExcludedFromFee[account]; } 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 { 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"); if(from != owner() && to != owner()) require(amount <= _maxTxAmount, "Transfer amount exceeds the maxTxAmount."); // is the token balance of this contract address over the min number of // tokens that we need to initiate a swap + liquidity lock? // also, don't get caught in a circular liquidity event. // also, don't swap & liquify if sender is uniswap pair. uint256 contractTokenBalance = balanceOf(address(this)); if(contractTokenBalance >= _maxTxAmount) { contractTokenBalance = _maxTxAmount; } bool overMinTokenBalance = contractTokenBalance >= numTokensSellToAddToLiquidity; if ( overMinTokenBalance && !inSwapAndLiquify && from != uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = numTokensSellToAddToLiquidity; //add liquidity swapAndLiquify(contractTokenBalance); } //indicates if fee should be deducted from transfer bool takeFee = true; //if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFee[from] || _isExcludedFromFee[to]){ takeFee = false; } //transfer amount, it will take tax, burn, liquidity fee _tokenTransfer(from,to,amount,takeFee); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { // split the contract balance into halves uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the liquidity event include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered // how much ETH did we just swap into? uint256 newBalance = address(this).balance.sub(initialBalance); // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount,bool takeFee) private { if(!takeFee) removeAllFee(); if (_isExcluded[sender] && !_isExcluded[recipient]) { _transferFromExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && _isExcluded[recipient]) { _transferToExcluded(sender, recipient, amount); } else if (!_isExcluded[sender] && !_isExcluded[recipient]) { _transferStandard(sender, recipient, amount); } else if (_isExcluded[sender] && _isExcluded[recipient]) { _transferBothExcluded(sender, recipient, amount); } else { _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 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferToExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private { (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 tTransferAmount, uint256 tFee, uint256 tLiquidity) = _getValues(tAmount); _tOwned[sender] = _tOwned[sender].sub(tAmount); _rOwned[sender] = _rOwned[sender].sub(rAmount); _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount); _takeLiquidity(tLiquidity); _reflectFee(rFee, tFee); emit Transfer(sender, recipient, tTransferAmount); } }
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":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_liquidityFee","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":"_taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"deliver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emergencyRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"geUnlockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromReward","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"sendRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"liquidityFee","type":"uint256"}],"name":"setLiquidityFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTxPercent","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"setRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"taxFee","type":"uint256"}],"name":"setTaxFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
69d3c21bcecceda100000060095569085afffa6ff50bffffff19600a5560c06040526008608081905267119a5c9950985b1b60c21b60a09081526200004891600c91906200043c565b50604080518082019091526004808252634649524560e01b60209092019182526200007691600d916200043c565b50600e805460ff191660091790556005600f819055601081905560118190556012556014805460ff60a81b1916600160a81b17905569010f0cf064dd59200000601555681b1ae4d6e2ef500000601655348015620000d357600080fd5b506000620000e062000221565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a54600360006200013b62000221565b6001600160a01b031681526020810191909152604001600020556200017473a5e0829caced8ffdd4de3c43696c57f7d7a678ff62000225565b600160066000620001846200042d565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526006909252902080549091166001179055620001ce62000221565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6009546040518082815260200191505060405180910390a3620004e8565b3390565b6200022f62000221565b6000546001600160a01b0390811691161462000292576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002d157600080fd5b505afa158015620002e6573d6000803e3d6000fd5b505050506040513d6020811015620002fd57600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156200034e57600080fd5b505afa15801562000363573d6000803e3d6000fd5b505050506040513d60208110156200037a57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b158015620003cd57600080fd5b505af1158015620003e2573d6000803e3d6000fd5b505050506040513d6020811015620003f957600080fd5b5051601480546001600160a01b039283166001600160a01b0319918216179091556013805493909216921691909117905550565b6000546001600160a01b031690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620004745760008555620004bf565b82601f106200048f57805160ff1916838001178555620004bf565b82800160010185558215620004bf579182015b82811115620004bf578251825591602001919060010190620004a2565b50620004cd929150620004d1565b5090565b5b80821115620004cd5760008155600101620004d2565b612dce80620004f86000396000f3fe60806040526004361061023f5760003560e01c80636bc87c3a1161012e578063a9059cbb116100ab578063d543dbeb1161006f578063d543dbeb1461084a578063dd46706414610874578063dd62ed3e1461089e578063ea2f0b37146108d9578063f2fde38b1461090c57610246565b8063a9059cbb14610764578063b6c523241461079d578063c0d78655146107b2578063c49b9a80146107e5578063c8773af21461081157610246565b80638da5cb5b116100f25780638da5cb5b146106c25780638ee88c53146106d757806395d89b4114610701578063a457c2d714610716578063a69df4b51461074f57610246565b80636bc87c3a1461061d57806370a0823114610632578063715018a6146106655780637d1db4a51461067a57806388f820201461068f57610246565b806339509351116101bc57806349bd5a5e1161018057806349bd5a5e146105635780634a74bb021461057857806352390c021461058d5780635342acb4146105c057806367b41f05146105f357610246565b806339509351146104865780633b124fe7146104bf5780633bd5d173146104d4578063437823ec146104fe5780634549b0391461053157610246565b806318160ddd1161020357806318160ddd146103a657806323b872dd146103bb5780632d838119146103fe578063313ce567146104285780633685d4191461045357610246565b8063061c82d01461024b57806306fdde0314610277578063095ea7b31461030157806313114a9d1461034e5780631694505e1461037557610246565b3661024657005b600080fd5b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b503561093f565b005b34801561028357600080fd5b5061028c61099c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b038135169060200135610a32565b604080519115158252519081900360200190f35b34801561035a57600080fd5b50610363610a50565b60408051918252519081900360200190f35b34801561038157600080fd5b5061038a610a56565b604080516001600160a01b039092168252519081900360200190f35b3480156103b257600080fd5b50610363610a65565b3480156103c757600080fd5b5061033a600480360360608110156103de57600080fd5b506001600160a01b03813581169160208101359091169060400135610a6b565b34801561040a57600080fd5b506103636004803603602081101561042157600080fd5b5035610af2565b34801561043457600080fd5b5061043d610b54565b6040805160ff9092168252519081900360200190f35b34801561045f57600080fd5b506102756004803603602081101561047657600080fd5b50356001600160a01b0316610b5d565b34801561049257600080fd5b5061033a600480360360408110156104a957600080fd5b506001600160a01b038135169060200135610d1e565b3480156104cb57600080fd5b50610363610d6c565b3480156104e057600080fd5b50610275600480360360208110156104f757600080fd5b5035610d72565b34801561050a57600080fd5b506102756004803603602081101561052157600080fd5b50356001600160a01b0316610e4c565b34801561053d57600080fd5b506103636004803603604081101561055457600080fd5b50803590602001351515610ec8565b34801561056f57600080fd5b5061038a610f5a565b34801561058457600080fd5b5061033a610f69565b34801561059957600080fd5b50610275600480360360208110156105b057600080fd5b50356001600160a01b0316610f79565b3480156105cc57600080fd5b5061033a600480360360208110156105e357600080fd5b50356001600160a01b031661115b565b3480156105ff57600080fd5b506102756004803603602081101561061657600080fd5b5035611179565b34801561062957600080fd5b5061036361125d565b34801561063e57600080fd5b506103636004803603602081101561065557600080fd5b50356001600160a01b0316611263565b34801561067157600080fd5b506102756112c5565b34801561068657600080fd5b50610363611355565b34801561069b57600080fd5b5061033a600480360360208110156106b257600080fd5b50356001600160a01b031661135b565b3480156106ce57600080fd5b5061038a611379565b3480156106e357600080fd5b50610275600480360360208110156106fa57600080fd5b5035611388565b34801561070d57600080fd5b5061028c6113e5565b34801561072257600080fd5b5061033a6004803603604081101561073957600080fd5b506001600160a01b038135169060200135611446565b34801561075b57600080fd5b506102756114ae565b34801561077057600080fd5b5061033a6004803603604081101561078757600080fd5b506001600160a01b03813516906020013561159c565b3480156107a957600080fd5b506103636115b0565b3480156107be57600080fd5b50610275600480360360208110156107d557600080fd5b50356001600160a01b03166115b6565b3480156107f157600080fd5b506102756004803603602081101561080857600080fd5b503515156117a0565b34801561081d57600080fd5b5061033a6004803603604081101561083457600080fd5b506001600160a01b03813516906020013561184b565b34801561085657600080fd5b506102756004803603602081101561086d57600080fd5b50356118b0565b34801561088057600080fd5b506102756004803603602081101561089757600080fd5b503561192e565b3480156108aa57600080fd5b50610363600480360360408110156108c157600080fd5b506001600160a01b03813581169160200135166119cc565b3480156108e557600080fd5b50610275600480360360208110156108fc57600080fd5b50356001600160a01b03166119f7565b34801561091857600080fd5b506102756004803603602081101561092f57600080fd5b50356001600160a01b0316611a70565b610947611b56565b6000546001600160a01b03908116911614610997576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b6000610a46610a3f611b56565b8484611b5a565b5060015b92915050565b600b5490565b6013546001600160a01b031681565b60095490565b6000610a78848484611c46565b610ae884610a84611b56565b610ae385604051806060016040528060288152602001612c4b602891396001600160a01b038a16600090815260056020526040812090610ac2611b56565b6001600160a01b031681526020810191909152604001600020549190611e71565b611b5a565b5060019392505050565b6000600a54821115610b355760405162461bcd60e51b815260040180806020018281038252602a815260200180612b6c602a913960400191505060405180910390fd5b6000610b3f611f08565b9050610b4b8382611f2b565b9150505b919050565b600e5460ff1690565b610b65611b56565b6000546001600160a01b03908116911614610bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c22576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d1a57816001600160a01b031660088281548110610c4657fe5b6000918252602090912001546001600160a01b03161415610d1257600880546000198101908110610c7357fe5b600091825260209091200154600880546001600160a01b039092169183908110610c9957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ceb57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d1a565b600101610c25565b5050565b6000610a46610d2b611b56565b84610ae38560056000610d3c611b56565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f74565b600f5481565b6000610d7c611b56565b6001600160a01b03811660009081526007602052604090205490915060ff1615610dd75760405162461bcd60e51b815260040180806020018281038252602c815260200180612d25602c913960400191505060405180910390fd5b6000610de283611fce565b505050506001600160a01b038416600090815260036020526040902054919250610e0e9190508261201d565b6001600160a01b038316600090815260036020526040902055600a54610e34908261201d565b600a55600b54610e449084611f74565b600b55505050565b610e54611b56565b6000546001600160a01b03908116911614610ea4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610f21576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f40576000610f3184611fce565b50939550610a4a945050505050565b6000610f4b84611fce565b50929550610a4a945050505050565b6014546001600160a01b031681565b601454600160a81b900460ff1681565b610f81611b56565b6000546001600160a01b03908116911614610fd1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b038216141561102d5760405162461bcd60e51b8152600401808060200182810382526024815260200180612bde6024913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561109b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156110f5576001600160a01b0381166000908152600360205260409020546110db90610af2565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611181611b56565b6000546001600160a01b039081169116146111d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600a546111de9082611f74565b600a556009546111ee9082611f74565b6009553060009081526003602052604090205461120b9082611f74565b3060009081526003602090815260408083209390935560079052205460ff161561125a57306000908152600460205260409020546112499082611f74565b306000908152600460205260409020555b50565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156112a357506001600160a01b038116600090815260046020526040902054610b4f565b6001600160a01b038216600090815260036020526040902054610a4a90610af2565b6112cd611b56565b6000546001600160a01b0390811691161461131d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612c93833981519152908390a3600080546001600160a01b0319169055565b60155481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611390611b56565b6000546001600160a01b039081169116146113e0576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b6000610a46611453611b56565b84610ae385604051806060016040528060258152602001612d74602591396005600061147d611b56565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611e71565b6001546001600160a01b031633146114f75760405162461bcd60e51b8152600401808060200182810382526023815260200180612d516023913960400191505060405180910390fd5b600254421161154d576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612c9383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a466115a9611b56565b8484611c46565b60025490565b6115be611b56565b6000546001600160a01b0390811691161461160e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561164c57600080fd5b505afa158015611660573d6000803e3d6000fd5b505050506040513d602081101561167657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156116c657600080fd5b505afa1580156116da573d6000803e3d6000fd5b505050506040513d60208110156116f057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561174257600080fd5b505af1158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b5051601480546001600160a01b039283166001600160a01b0319918216179091556013805493909216921691909117905550565b6117a8611b56565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b60148054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6000611855611b56565b6000546001600160a01b039081169116146118a5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b610a46308484611c46565b6118b8611b56565b6000546001600160a01b03908116911614611908576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b61192860646119228360095461205f90919063ffffffff16565b90611f2b565b60155550565b611936611b56565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612c93833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6119ff611b56565b6000546001600160a01b03908116911614611a4f576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611a78611b56565b6000546001600160a01b03908116911614611ac8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b038116611b0d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b966026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612c9383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611b9f5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d016024913960400191505060405180910390fd5b6001600160a01b038216611be45760405162461bcd60e51b8152600401808060200182810382526022815260200180612bbc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611c8b5760405162461bcd60e51b8152600401808060200182810382526025815260200180612cdc6025913960400191505060405180910390fd5b6001600160a01b038216611cd05760405162461bcd60e51b8152600401808060200182810382526023815260200180612b496023913960400191505060405180910390fd5b60008111611d0f5760405162461bcd60e51b8152600401808060200182810382526029815260200180612cb36029913960400191505060405180910390fd5b611d17611379565b6001600160a01b0316836001600160a01b031614158015611d515750611d3b611379565b6001600160a01b0316826001600160a01b031614155b15611d9757601554811115611d975760405162461bcd60e51b8152600401808060200182810382526028815260200180612c026028913960400191505060405180910390fd5b6000611da230611263565b90506015548110611db257506015545b60165481108015908190611dd05750601454600160a01b900460ff16155b8015611dea57506014546001600160a01b03868116911614155b8015611dff5750601454600160a81b900460ff165b15611e12576016549150611e12826120b8565b6001600160a01b03851660009081526006602052604090205460019060ff1680611e5457506001600160a01b03851660009081526006602052604090205460ff165b15611e5d575060005b611e698686868461215e565b505050505050565b60008184841115611f005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ec5578181015183820152602001611ead565b50505050905090810190601f168015611ef25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611f156122d2565b9092509050611f248282611f2b565b9250505090565b6000611f6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612435565b9392505050565b600082820183811015611f6d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611fe58a61249a565b92509250925060008060006120038d8686611ffe611f08565b6124dc565b919f909e50909c50959a5093985091965092945050505050565b6000611f6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e71565b60008261206e57506000610a4a565b8282028284828161207b57fe5b0414611f6d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612c2a6021913960400191505060405180910390fd5b6014805460ff60a01b1916600160a01b17905560006120d8826002611f2b565b905060006120e6838361201d565b9050476120f28361252c565b60006120fe478361201d565b905061210a83826126d2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff60a01b19169055505050565b8061216b5761216b61279f565b6001600160a01b03841660009081526007602052604090205460ff1680156121ac57506001600160a01b03831660009081526007602052604090205460ff16155b156121c1576121bc8484846127d1565b6122bf565b6001600160a01b03841660009081526007602052604090205460ff1615801561220257506001600160a01b03831660009081526007602052604090205460ff165b15612212576121bc8484846128f5565b6001600160a01b03841660009081526007602052604090205460ff1615801561225457506001600160a01b03831660009081526007602052604090205460ff16155b15612264576121bc84848461299e565b6001600160a01b03841660009081526007602052604090205460ff1680156122a457506001600160a01b03831660009081526007602052604090205460ff165b156122b4576121bc8484846129e2565b6122bf84848461299e565b806122cc576122cc612a55565b50505050565b600a546009546000918291825b600854811015612403578260036000600884815481106122fb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612360575081600460006008848154811061233957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561237757600a5460095494509450505050612431565b6123b7600360006008848154811061238b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061201d565b92506123f960046000600884815481106123cd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061201d565b91506001016122df565b50600954600a5461241391611f2b565b82101561242b57600a54600954935093505050612431565b90925090505b9091565b600081836124845760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ec5578181015183820152602001611ead565b50600083858161249057fe5b0495945050505050565b6000806000806124a985612a63565b905060006124b686612a7f565b905060006124ce826124c8898661201d565b9061201d565b979296509094509092505050565b60008080806124eb888661205f565b905060006124f9888761205f565b90506000612507888861205f565b90506000612519826124c8868661201d565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061255a57fe5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156125ae57600080fd5b505afa1580156125c2573d6000803e3d6000fd5b505050506040513d60208110156125d857600080fd5b50518151829060019081106125e957fe5b6001600160a01b03928316602091820292909201015260135461260f9130911684611b5a565b60135460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561269557818101518382015260200161267d565b505050509050019650505050505050600060405180830381600087803b1580156126be57600080fd5b505af1158015611e69573d6000803e3d6000fd5b6013546126ea9030906001600160a01b031684611b5a565b6013546001600160a01b031663f305d719823085600080612709611379565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561277457600080fd5b505af1158015612788573d6000803e3d6000fd5b50505050506040513d60608110156122cc57600080fd5b600f541580156127af5750601154155b156127b9576127cf565b600f805460105560118054601255600091829055555b565b6000806000806000806127e387611fce565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612815908861201d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612844908761201d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546128739086611f74565b6001600160a01b03891660009081526003602052604090205561289581612a9b565b61289f8483612b24565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061290787611fce565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612939908761201d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461296f9084611f74565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546128739086611f74565b6000806000806000806129b087611fce565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612844908761201d565b6000806000806000806129f487611fce565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a26908861201d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612939908761201d565b601054600f55601254601155565b6000610a4a6064611922600f548561205f90919063ffffffff16565b6000610a4a60646119226011548561205f90919063ffffffff16565b6000612aa5611f08565b90506000612ab3838361205f565b30600090815260036020526040902054909150612ad09082611f74565b3060009081526003602090815260408083209390935560079052205460ff1615612b1f5730600090815260046020526040902054612b0e9084611f74565b306000908152600460205260409020555b505050565b600a54612b31908361201d565b600a55600b54612b419082611f74565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520517569636b7377617020726f757465722e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122052342365e87259eab3edf19aaf4bb5d89e9dbba9cda27f32cd1ccb5e9119917a64736f6c63430007040033
Deployed Bytecode
0x60806040526004361061023f5760003560e01c80636bc87c3a1161012e578063a9059cbb116100ab578063d543dbeb1161006f578063d543dbeb1461084a578063dd46706414610874578063dd62ed3e1461089e578063ea2f0b37146108d9578063f2fde38b1461090c57610246565b8063a9059cbb14610764578063b6c523241461079d578063c0d78655146107b2578063c49b9a80146107e5578063c8773af21461081157610246565b80638da5cb5b116100f25780638da5cb5b146106c25780638ee88c53146106d757806395d89b4114610701578063a457c2d714610716578063a69df4b51461074f57610246565b80636bc87c3a1461061d57806370a0823114610632578063715018a6146106655780637d1db4a51461067a57806388f820201461068f57610246565b806339509351116101bc57806349bd5a5e1161018057806349bd5a5e146105635780634a74bb021461057857806352390c021461058d5780635342acb4146105c057806367b41f05146105f357610246565b806339509351146104865780633b124fe7146104bf5780633bd5d173146104d4578063437823ec146104fe5780634549b0391461053157610246565b806318160ddd1161020357806318160ddd146103a657806323b872dd146103bb5780632d838119146103fe578063313ce567146104285780633685d4191461045357610246565b8063061c82d01461024b57806306fdde0314610277578063095ea7b31461030157806313114a9d1461034e5780631694505e1461037557610246565b3661024657005b600080fd5b34801561025757600080fd5b506102756004803603602081101561026e57600080fd5b503561093f565b005b34801561028357600080fd5b5061028c61099c565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c65781810151838201526020016102ae565b50505050905090810190601f1680156102f35780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030d57600080fd5b5061033a6004803603604081101561032457600080fd5b506001600160a01b038135169060200135610a32565b604080519115158252519081900360200190f35b34801561035a57600080fd5b50610363610a50565b60408051918252519081900360200190f35b34801561038157600080fd5b5061038a610a56565b604080516001600160a01b039092168252519081900360200190f35b3480156103b257600080fd5b50610363610a65565b3480156103c757600080fd5b5061033a600480360360608110156103de57600080fd5b506001600160a01b03813581169160208101359091169060400135610a6b565b34801561040a57600080fd5b506103636004803603602081101561042157600080fd5b5035610af2565b34801561043457600080fd5b5061043d610b54565b6040805160ff9092168252519081900360200190f35b34801561045f57600080fd5b506102756004803603602081101561047657600080fd5b50356001600160a01b0316610b5d565b34801561049257600080fd5b5061033a600480360360408110156104a957600080fd5b506001600160a01b038135169060200135610d1e565b3480156104cb57600080fd5b50610363610d6c565b3480156104e057600080fd5b50610275600480360360208110156104f757600080fd5b5035610d72565b34801561050a57600080fd5b506102756004803603602081101561052157600080fd5b50356001600160a01b0316610e4c565b34801561053d57600080fd5b506103636004803603604081101561055457600080fd5b50803590602001351515610ec8565b34801561056f57600080fd5b5061038a610f5a565b34801561058457600080fd5b5061033a610f69565b34801561059957600080fd5b50610275600480360360208110156105b057600080fd5b50356001600160a01b0316610f79565b3480156105cc57600080fd5b5061033a600480360360208110156105e357600080fd5b50356001600160a01b031661115b565b3480156105ff57600080fd5b506102756004803603602081101561061657600080fd5b5035611179565b34801561062957600080fd5b5061036361125d565b34801561063e57600080fd5b506103636004803603602081101561065557600080fd5b50356001600160a01b0316611263565b34801561067157600080fd5b506102756112c5565b34801561068657600080fd5b50610363611355565b34801561069b57600080fd5b5061033a600480360360208110156106b257600080fd5b50356001600160a01b031661135b565b3480156106ce57600080fd5b5061038a611379565b3480156106e357600080fd5b50610275600480360360208110156106fa57600080fd5b5035611388565b34801561070d57600080fd5b5061028c6113e5565b34801561072257600080fd5b5061033a6004803603604081101561073957600080fd5b506001600160a01b038135169060200135611446565b34801561075b57600080fd5b506102756114ae565b34801561077057600080fd5b5061033a6004803603604081101561078757600080fd5b506001600160a01b03813516906020013561159c565b3480156107a957600080fd5b506103636115b0565b3480156107be57600080fd5b50610275600480360360208110156107d557600080fd5b50356001600160a01b03166115b6565b3480156107f157600080fd5b506102756004803603602081101561080857600080fd5b503515156117a0565b34801561081d57600080fd5b5061033a6004803603604081101561083457600080fd5b506001600160a01b03813516906020013561184b565b34801561085657600080fd5b506102756004803603602081101561086d57600080fd5b50356118b0565b34801561088057600080fd5b506102756004803603602081101561089757600080fd5b503561192e565b3480156108aa57600080fd5b50610363600480360360408110156108c157600080fd5b506001600160a01b03813581169160200135166119cc565b3480156108e557600080fd5b50610275600480360360208110156108fc57600080fd5b50356001600160a01b03166119f7565b34801561091857600080fd5b506102756004803603602081101561092f57600080fd5b50356001600160a01b0316611a70565b610947611b56565b6000546001600160a01b03908116911614610997576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600f55565b600c8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b820191906000526020600020905b815481529060010190602001808311610a0b57829003601f168201915b5050505050905090565b6000610a46610a3f611b56565b8484611b5a565b5060015b92915050565b600b5490565b6013546001600160a01b031681565b60095490565b6000610a78848484611c46565b610ae884610a84611b56565b610ae385604051806060016040528060288152602001612c4b602891396001600160a01b038a16600090815260056020526040812090610ac2611b56565b6001600160a01b031681526020810191909152604001600020549190611e71565b611b5a565b5060019392505050565b6000600a54821115610b355760405162461bcd60e51b815260040180806020018281038252602a815260200180612b6c602a913960400191505060405180910390fd5b6000610b3f611f08565b9050610b4b8382611f2b565b9150505b919050565b600e5460ff1690565b610b65611b56565b6000546001600160a01b03908116911614610bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526007602052604090205460ff16610c22576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b60005b600854811015610d1a57816001600160a01b031660088281548110610c4657fe5b6000918252602090912001546001600160a01b03161415610d1257600880546000198101908110610c7357fe5b600091825260209091200154600880546001600160a01b039092169183908110610c9957fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600482526040808220829055600790925220805460ff191690556008805480610ceb57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055610d1a565b600101610c25565b5050565b6000610a46610d2b611b56565b84610ae38560056000610d3c611b56565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f74565b600f5481565b6000610d7c611b56565b6001600160a01b03811660009081526007602052604090205490915060ff1615610dd75760405162461bcd60e51b815260040180806020018281038252602c815260200180612d25602c913960400191505060405180910390fd5b6000610de283611fce565b505050506001600160a01b038416600090815260036020526040902054919250610e0e9190508261201d565b6001600160a01b038316600090815260036020526040902055600a54610e34908261201d565b600a55600b54610e449084611f74565b600b55505050565b610e54611b56565b6000546001600160a01b03908116911614610ea4576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19166001179055565b6000600954831115610f21576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b81610f40576000610f3184611fce565b50939550610a4a945050505050565b6000610f4b84611fce565b50929550610a4a945050505050565b6014546001600160a01b031681565b601454600160a81b900460ff1681565b610f81611b56565b6000546001600160a01b03908116911614610fd1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b038216141561102d5760405162461bcd60e51b8152600401808060200182810382526024815260200180612bde6024913960400191505060405180910390fd5b6001600160a01b03811660009081526007602052604090205460ff161561109b576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b038116600090815260036020526040902054156110f5576001600160a01b0381166000908152600360205260409020546110db90610af2565b6001600160a01b0382166000908152600460205260409020555b6001600160a01b03166000818152600760205260408120805460ff191660019081179091556008805491820181559091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319169091179055565b6001600160a01b031660009081526006602052604090205460ff1690565b611181611b56565b6000546001600160a01b039081169116146111d1576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600a546111de9082611f74565b600a556009546111ee9082611f74565b6009553060009081526003602052604090205461120b9082611f74565b3060009081526003602090815260408083209390935560079052205460ff161561125a57306000908152600460205260409020546112499082611f74565b306000908152600460205260409020555b50565b60115481565b6001600160a01b03811660009081526007602052604081205460ff16156112a357506001600160a01b038116600090815260046020526040902054610b4f565b6001600160a01b038216600090815260036020526040902054610a4a90610af2565b6112cd611b56565b6000546001600160a01b0390811691161461131d576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b600080546040516001600160a01b0390911690600080516020612c93833981519152908390a3600080546001600160a01b0319169055565b60155481565b6001600160a01b031660009081526007602052604090205460ff1690565b6000546001600160a01b031690565b611390611b56565b6000546001600160a01b039081169116146113e0576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b601155565b600d8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a285780601f106109fd57610100808354040283529160200191610a28565b6000610a46611453611b56565b84610ae385604051806060016040528060258152602001612d74602591396005600061147d611b56565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611e71565b6001546001600160a01b031633146114f75760405162461bcd60e51b8152600401808060200182810382526023815260200180612d516023913960400191505060405180910390fd5b600254421161154d576040805162461bcd60e51b815260206004820152601f60248201527f436f6e7472616374206973206c6f636b656420756e74696c2037206461797300604482015290519081900360640190fd5b600154600080546040516001600160a01b039384169390911691600080516020612c9383398151915291a3600154600080546001600160a01b0319166001600160a01b03909216919091179055565b6000610a466115a9611b56565b8484611c46565b60025490565b6115be611b56565b6000546001600160a01b0390811691161461160e576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561164c57600080fd5b505afa158015611660573d6000803e3d6000fd5b505050506040513d602081101561167657600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929186169163ad5c464891600480820192602092909190829003018186803b1580156116c657600080fd5b505afa1580156116da573d6000803e3d6000fd5b505050506040513d60208110156116f057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b15801561174257600080fd5b505af1158015611756573d6000803e3d6000fd5b505050506040513d602081101561176c57600080fd5b5051601480546001600160a01b039283166001600160a01b0319918216179091556013805493909216921691909117905550565b6117a8611b56565b6000546001600160a01b039081169116146117f8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b60148054821515600160a81b810260ff60a81b199092169190911790915560408051918252517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc1599181900360200190a150565b6000611855611b56565b6000546001600160a01b039081169116146118a5576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b610a46308484611c46565b6118b8611b56565b6000546001600160a01b03908116911614611908576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b61192860646119228360095461205f90919063ffffffff16565b90611f2b565b60155550565b611936611b56565b6000546001600160a01b03908116911614611986576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b60008054600180546001600160a01b03199081166001600160a01b038416179091551681554282016002556040518190600080516020612c93833981519152908290a350565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205490565b6119ff611b56565b6000546001600160a01b03908116911614611a4f576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600660205260409020805460ff19169055565b611a78611b56565b6000546001600160a01b03908116911614611ac8576040805162461bcd60e51b81526020600482018190526024820152600080516020612c73833981519152604482015290519081900360640190fd5b6001600160a01b038116611b0d5760405162461bcd60e51b8152600401808060200182810382526026815260200180612b966026913960400191505060405180910390fd5b600080546040516001600160a01b0380851693921691600080516020612c9383398151915291a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160a01b038316611b9f5760405162461bcd60e51b8152600401808060200182810382526024815260200180612d016024913960400191505060405180910390fd5b6001600160a01b038216611be45760405162461bcd60e51b8152600401808060200182810382526022815260200180612bbc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260056020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611c8b5760405162461bcd60e51b8152600401808060200182810382526025815260200180612cdc6025913960400191505060405180910390fd5b6001600160a01b038216611cd05760405162461bcd60e51b8152600401808060200182810382526023815260200180612b496023913960400191505060405180910390fd5b60008111611d0f5760405162461bcd60e51b8152600401808060200182810382526029815260200180612cb36029913960400191505060405180910390fd5b611d17611379565b6001600160a01b0316836001600160a01b031614158015611d515750611d3b611379565b6001600160a01b0316826001600160a01b031614155b15611d9757601554811115611d975760405162461bcd60e51b8152600401808060200182810382526028815260200180612c026028913960400191505060405180910390fd5b6000611da230611263565b90506015548110611db257506015545b60165481108015908190611dd05750601454600160a01b900460ff16155b8015611dea57506014546001600160a01b03868116911614155b8015611dff5750601454600160a81b900460ff165b15611e12576016549150611e12826120b8565b6001600160a01b03851660009081526006602052604090205460019060ff1680611e5457506001600160a01b03851660009081526006602052604090205460ff165b15611e5d575060005b611e698686868461215e565b505050505050565b60008184841115611f005760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ec5578181015183820152602001611ead565b50505050905090810190601f168015611ef25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611f156122d2565b9092509050611f248282611f2b565b9250505090565b6000611f6d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612435565b9392505050565b600082820183811015611f6d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6000806000806000806000806000611fe58a61249a565b92509250925060008060006120038d8686611ffe611f08565b6124dc565b919f909e50909c50959a5093985091965092945050505050565b6000611f6d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611e71565b60008261206e57506000610a4a565b8282028284828161207b57fe5b0414611f6d5760405162461bcd60e51b8152600401808060200182810382526021815260200180612c2a6021913960400191505060405180910390fd5b6014805460ff60a01b1916600160a01b17905560006120d8826002611f2b565b905060006120e6838361201d565b9050476120f28361252c565b60006120fe478361201d565b905061210a83826126d2565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a150506014805460ff60a01b19169055505050565b8061216b5761216b61279f565b6001600160a01b03841660009081526007602052604090205460ff1680156121ac57506001600160a01b03831660009081526007602052604090205460ff16155b156121c1576121bc8484846127d1565b6122bf565b6001600160a01b03841660009081526007602052604090205460ff1615801561220257506001600160a01b03831660009081526007602052604090205460ff165b15612212576121bc8484846128f5565b6001600160a01b03841660009081526007602052604090205460ff1615801561225457506001600160a01b03831660009081526007602052604090205460ff16155b15612264576121bc84848461299e565b6001600160a01b03841660009081526007602052604090205460ff1680156122a457506001600160a01b03831660009081526007602052604090205460ff165b156122b4576121bc8484846129e2565b6122bf84848461299e565b806122cc576122cc612a55565b50505050565b600a546009546000918291825b600854811015612403578260036000600884815481106122fb57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180612360575081600460006008848154811061233957fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b1561237757600a5460095494509450505050612431565b6123b7600360006008848154811061238b57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849061201d565b92506123f960046000600884815481106123cd57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839061201d565b91506001016122df565b50600954600a5461241391611f2b565b82101561242b57600a54600954935093505050612431565b90925090505b9091565b600081836124845760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ec5578181015183820152602001611ead565b50600083858161249057fe5b0495945050505050565b6000806000806124a985612a63565b905060006124b686612a7f565b905060006124ce826124c8898661201d565b9061201d565b979296509094509092505050565b60008080806124eb888661205f565b905060006124f9888761205f565b90506000612507888861205f565b90506000612519826124c8868661201d565b939b939a50919850919650505050505050565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061255a57fe5b6001600160a01b03928316602091820292909201810191909152601354604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156125ae57600080fd5b505afa1580156125c2573d6000803e3d6000fd5b505050506040513d60208110156125d857600080fd5b50518151829060019081106125e957fe5b6001600160a01b03928316602091820292909201015260135461260f9130911684611b5a565b60135460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561269557818101518382015260200161267d565b505050509050019650505050505050600060405180830381600087803b1580156126be57600080fd5b505af1158015611e69573d6000803e3d6000fd5b6013546126ea9030906001600160a01b031684611b5a565b6013546001600160a01b031663f305d719823085600080612709611379565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b15801561277457600080fd5b505af1158015612788573d6000803e3d6000fd5b50505050506040513d60608110156122cc57600080fd5b600f541580156127af5750601154155b156127b9576127cf565b600f805460105560118054601255600091829055555b565b6000806000806000806127e387611fce565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612815908861201d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612844908761201d565b6001600160a01b03808b1660009081526003602052604080822093909355908a16815220546128739086611f74565b6001600160a01b03891660009081526003602052604090205561289581612a9b565b61289f8483612b24565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a3505050505050505050565b60008060008060008061290787611fce565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612939908761201d565b6001600160a01b03808b16600090815260036020908152604080832094909455918b1681526004909152205461296f9084611f74565b6001600160a01b0389166000908152600460209081526040808320939093556003905220546128739086611f74565b6000806000806000806129b087611fce565b6001600160a01b038f16600090815260036020526040902054959b50939950919750955093509150612844908761201d565b6000806000806000806129f487611fce565b6001600160a01b038f16600090815260046020526040902054959b50939950919750955093509150612a26908861201d565b6001600160a01b038a16600090815260046020908152604080832093909355600390522054612939908761201d565b601054600f55601254601155565b6000610a4a6064611922600f548561205f90919063ffffffff16565b6000610a4a60646119226011548561205f90919063ffffffff16565b6000612aa5611f08565b90506000612ab3838361205f565b30600090815260036020526040902054909150612ad09082611f74565b3060009081526003602090815260408083209390935560079052205460ff1615612b1f5730600090815260046020526040902054612b0e9084611f74565b306000908152600460205260409020555b505050565b600a54612b31908361201d565b600a55600b54612b419082611f74565b600b55505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737357652063616e206e6f74206578636c75646520517569636b7377617020726f757465722e5472616e7366657220616d6f756e74206578636565647320746865206d61785478416d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65728be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e05472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e596f7520646f6e27742068617665207065726d697373696f6e20746f20756e6c6f636b45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122052342365e87259eab3edf19aaf4bb5d89e9dbba9cda27f32cd1ccb5e9119917a64736f6c63430007040033
Deployed Bytecode Sourcemap
25684:19194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33985:98;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33985:98:0;;:::i;:::-;;28156:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29068:161;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29068:161:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30189:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;26641:41;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;26641:41:0;;;;;;;;;;;;;;28433:95;;;;;;;;;;;;;:::i;29237:313::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29237:313:0;;;;;;;;;;;;;;;;;:::i;31113:253::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31113:253:0;;:::i;28342:83::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32411:479;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32411:479:0;-1:-1:-1;;;;;32411:479:0;;:::i;29558:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29558:218:0;;;;;;;;:::i;26453:26::-;;;;;;;;;;;;;:::i;30284:377::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30284:377:0;;:::i;33740:111::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33740:111:0;-1:-1:-1;;;;;33740:111:0;;:::i;30669:436::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30669:436:0;;;;;;;;;:::i;26689:28::-;;;;;;;;;;;;;:::i;26758:40::-;;;;;;;;;;;;;:::i;31729:674::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31729:674:0;-1:-1:-1;;;;;31729:674:0;;:::i;37882:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37882:123:0;-1:-1:-1;;;;;37882:123:0;;:::i;31378:343::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31378:343:0;;:::i;26540:32::-;;;;;;;;;;;;;:::i;28536:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28536:198:0;-1:-1:-1;;;;;28536:198:0;;:::i;16255:148::-;;;;;;;;;;;;;:::i;26811:53::-;;;;;;;;;;;;;:::i;30061:120::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30061:120:0;-1:-1:-1;;;;;30061:120:0;;:::i;15612:79::-;;;;;;;;;;;;;:::i;34095:122::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34095:122:0;;:::i;28247:87::-;;;;;;;;;;;;;:::i;29784:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29784:269:0;;;;;;;;:::i;17277:305::-;;;;;;;;;;;;;:::i;28742:167::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28742:167:0;;;;;;;;:::i;16810:89::-;;;;;;;;;;;;;:::i;27723:425::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27723:425:0;-1:-1:-1;;;;;27723:425:0;;:::i;34398:171::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34398:171:0;;;;:::i;33554:174::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33554:174:0;;;;;;;;:::i;34228:162::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34228:162:0;;:::i;16975:226::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16975:226:0;;:::i;28917:143::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;28917:143:0;;;;;;;;;;:::i;33863:110::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33863:110:0;-1:-1:-1;;;;;33863:110:0;;:::i;16558:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16558:244:0;-1:-1:-1;;;;;16558:244:0;;:::i;33985:98::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;34059:7:::1;:16:::0;33985:98::o;28156:83::-;28226:5;28219:12;;;;;;;;-1:-1:-1;;28219:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28193:13;;28219:12;;28226:5;;28219:12;;28226:5;28219:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28156:83;:::o;29068:161::-;29143:4;29160:39;29169:12;:10;:12::i;:::-;29183:7;29192:6;29160:8;:39::i;:::-;-1:-1:-1;29217:4:0;29068:161;;;;;:::o;30189:87::-;30258:10;;30189:87;:::o;26641:41::-;;;-1:-1:-1;;;;;26641:41:0;;:::o;28433:95::-;28513:7;;28433:95;:::o;29237:313::-;29335:4;29352:36;29362:6;29370:9;29381:6;29352:9;:36::i;:::-;29399:121;29408:6;29416:12;:10;:12::i;:::-;29430:89;29468:6;29430:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29430:19:0;;;;;;:11;:19;;;;;;29450:12;:10;:12::i;:::-;-1:-1:-1;;;;;29430:33:0;;;;;;;;;;;;-1:-1:-1;29430:33:0;;;:89;:37;:89::i;:::-;29399:8;:121::i;:::-;-1:-1:-1;29538:4:0;29237:313;;;;;:::o;31113:253::-;31179:7;31218;;31207;:18;;31199:73;;;;-1:-1:-1;;;31199:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31283:19;31306:10;:8;:10::i;:::-;31283:33;-1:-1:-1;31334:24:0;:7;31283:33;31334:11;:24::i;:::-;31327:31;;;31113:253;;;;:::o;28342:83::-;28408:9;;;;28342:83;:::o;32411:479::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32493:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32485:60;;;::::0;;-1:-1:-1;;;32485:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32561:9;32556:327;32580:9;:16:::0;32576:20;::::1;32556:327;;;32638:7;-1:-1:-1::0;;;;;32622:23:0::1;:9;32632:1;32622:12;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;32622:12:0::1;:23;32618:254;;;32681:9;32691:16:::0;;-1:-1:-1;;32691:20:0;;;32681:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32666:9:::1;:12:::0;;-1:-1:-1;;;;;32681:31:0;;::::1;::::0;32676:1;;32666:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;32666:46:0::1;-1:-1:-1::0;;;;;32666:46:0;;::::1;;::::0;;32731:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;32770:11:::1;:20:::0;;;;:28;;-1:-1:-1;;32770:28:0::1;::::0;;32817:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;32817:15:0;;;;;-1:-1:-1;;;;;;32817:15:0::1;::::0;;;;;32851:5:::1;;32618:254;32598:3;;32556:327;;;;32411:479:::0;:::o;29558:218::-;29646:4;29663:83;29672:12;:10;:12::i;:::-;29686:7;29695:50;29734:10;29695:11;:25;29707:12;:10;:12::i;:::-;-1:-1:-1;;;;;29695:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29695:25:0;;;:34;;;;;;;;;;;:38;:50::i;26453:26::-;;;;:::o;30284:377::-;30336:14;30353:12;:10;:12::i;:::-;-1:-1:-1;;;;;30385:19:0;;;;;;:11;:19;;;;;;30336:29;;-1:-1:-1;30385:19:0;;30384:20;30376:77;;;;-1:-1:-1;;;30376:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30465:15;30489:19;30500:7;30489:10;:19::i;:::-;-1:-1:-1;;;;;;;;;30537:15:0;;;;;;:7;:15;;;;;;30464:44;;-1:-1:-1;30537:28:0;;:15;-1:-1:-1;30464:44:0;30537:19;:28::i;:::-;-1:-1:-1;;;;;30519:15:0;;;;;;:7;:15;;;;;:46;30586:7;;:20;;30598:7;30586:11;:20::i;:::-;30576:7;:30;30630:10;;:23;;30645:7;30630:14;:23::i;:::-;30617:10;:36;-1:-1:-1;;;30284:377:0:o;33740:111::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33809:27:0::1;;::::0;;;:18:::1;:27;::::0;;;;:34;;-1:-1:-1;;33809:34:0::1;33839:4;33809:34;::::0;;33740:111::o;30669:436::-;30759:7;30798;;30787;:18;;30779:62;;;;;-1:-1:-1;;;30779:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;30857:17;30852:246;;30892:15;30916:19;30927:7;30916:10;:19::i;:::-;-1:-1:-1;30891:44:0;;-1:-1:-1;30950:14:0;;-1:-1:-1;;;;;30950:14:0;30852:246;30999:23;31030:19;31041:7;31030:10;:19::i;:::-;-1:-1:-1;30997:52:0;;-1:-1:-1;31064:22:0;;-1:-1:-1;;;;;31064:22:0;26689:28;;;-1:-1:-1;;;;;26689:28:0;;:::o;26758:40::-;;;-1:-1:-1;;;26758:40:0;;;;;:::o;31729:674::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;32050:42:::1;-1:-1:-1::0;;;;;32039:53:0;::::1;;;32031:102;;;;-1:-1:-1::0;;;32031:102:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;32153:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;32152:21;32144:61;;;::::0;;-1:-1:-1;;;32144:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;32219:16:0;::::1;32238:1;32219:16:::0;;;:7:::1;:16;::::0;;;;;:20;32216:108:::1;;-1:-1:-1::0;;;;;32295:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;32275:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;32256:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;32216:108:::1;-1:-1:-1::0;;;;;32334:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;32334:27:0::1;32357:4;32334:27:::0;;::::1;::::0;;;32372:9:::1;:23:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;32372:23:0::1;::::0;;::::1;::::0;;31729:674::o;37882:123::-;-1:-1:-1;;;;;37970:27:0;37946:4;37970:27;;;:18;:27;;;;;;;;;37882:123::o;31378:343::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;31460:7:::1;::::0;:19:::1;::::0;31472:6;31460:11:::1;:19::i;:::-;31450:7;:29:::0;31500:7:::1;::::0;:19:::1;::::0;31512:6;31500:11:::1;:19::i;:::-;31490:7;:29:::0;31571:4:::1;31555:22;::::0;;;:7:::1;:22;::::0;;;;;:34:::1;::::0;31582:6;31555:26:::1;:34::i;:::-;31546:4;31530:22;::::0;;;:7:::1;:22;::::0;;;;;;;:59;;;;31613:11:::1;:26:::0;;;;::::1;;31610:103;;;31695:4;31679:22;::::0;;;:7:::1;:22;::::0;;;;;:34:::1;::::0;31706:6;31679:26:::1;:34::i;:::-;31670:4;31654:22;::::0;;;:7:::1;:22;::::0;;;;:59;31610:103:::1;31378:343:::0;:::o;26540:32::-;;;;:::o;28536:198::-;-1:-1:-1;;;;;28626:20:0;;28602:7;28626:20;;;:11;:20;;;;;;;;28622:49;;;-1:-1:-1;;;;;;28655:16:0;;;;;;:7;:16;;;;;;28648:23;;28622:49;-1:-1:-1;;;;;28709:16:0;;;;;;:7;:16;;;;;;28689:37;;:19;:37::i;16255:148::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;16362:1:::1;16346:6:::0;;16325:40:::1;::::0;-1:-1:-1;;;;;16346:6:0;;::::1;::::0;-1:-1:-1;;;;;;;;;;;16325:40:0;16362:1;;16325:40:::1;16393:1;16376:19:::0;;-1:-1:-1;;;;;;16376:19:0::1;::::0;;16255:148::o;26811:53::-;;;;:::o;30061:120::-;-1:-1:-1;;;;;30153:20:0;30129:4;30153:20;;;:11;:20;;;;;;;;;30061:120::o;15612:79::-;15650:7;15677:6;-1:-1:-1;;;;;15677:6:0;15612:79;:::o;34095:122::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;34181:13:::1;:28:::0;34095:122::o;28247:87::-;28319:7;28312:14;;;;;;;;-1:-1:-1;;28312:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28286:13;;28312:14;;28319:7;;28312:14;;28319:7;28312:14;;;;;;;;;;;;;;;;;;;;;;;;29784:269;29877:4;29894:129;29903:12;:10;:12::i;:::-;29917:7;29926:96;29965:15;29926:96;;;;;;;;;;;;;;;;;:11;:25;29938:12;:10;:12::i;:::-;-1:-1:-1;;;;;29926:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;29926:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;17277:305::-;17329:14;;-1:-1:-1;;;;;17329:14:0;17347:10;17329:28;17321:76;;;;-1:-1:-1;;;17321:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17434:9;;17416:15;:27;17408:72;;;;;-1:-1:-1;;;17408:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17525:14;;;17517:6;;17496:44;;-1:-1:-1;;;;;17525:14:0;;;;17517:6;;;;-1:-1:-1;;;;;;;;;;;17496:44:0;;17560:14;;;17551:23;;-1:-1:-1;;;;;;17551:23:0;-1:-1:-1;;;;;17560:14:0;;;17551:23;;;;;;17277:305::o;28742:167::-;28820:4;28837:42;28847:12;:10;:12::i;:::-;28861:9;28872:6;28837:9;:42::i;16810:89::-;16882:9;;16810:89;:::o;27723:425::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;27787:35:::1;27844:6;27787:64;;27950:16;-1:-1:-1::0;;;;;27950:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;27950:26:0;28018:23:::1;::::0;;-1:-1:-1;;;28018:23:0;;;;-1:-1:-1;;;;;27932:70:0;;::::1;::::0;::::1;::::0;28011:4:::1;::::0;28018:21;;::::1;::::0;::::1;::::0;:23:::1;::::0;;::::1;::::0;27950:26:::1;::::0;28018:23;;;;;;;;:21;:23;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;28018:23:0;27932:110:::1;::::0;;-1:-1:-1;;;;;;27932:110:0::1;::::0;;;;;;-1:-1:-1;;;;;27932:110:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;28018:23:::1;::::0;27932:110;;;;;;;-1:-1:-1;27932:110:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;27932:110:0;27916:13:::1;:126:::0;;-1:-1:-1;;;;;27916:126:0;;::::1;-1:-1:-1::0;;;;;;27916:126:0;;::::1;;::::0;;;28106:15:::1;:34:::0;;;;;::::1;::::0;::::1;::::0;;;::::1;::::0;;-1:-1:-1;27723:425:0:o;34398:171::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;34475:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;34475:32:0;::::1;-1:-1:-1::0;;;;34475:32:0;;::::1;::::0;;;::::1;::::0;;;34523:38:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;34398:171:::0;:::o;33554:174::-;33638:4;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;33655:43:::1;33673:4;33680:9;33691:6;33655:9;:43::i;34228:162::-:0;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;34322:60:::1;34366:5;34322:25;34334:12;34322:7;;:11;;:25;;;;:::i;:::-;:29:::0;::::1;:60::i;:::-;34307:12;:75:::0;-1:-1:-1;34228:162:0:o;16975:226::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;17056:6:::1;::::0;;;17039:23;;-1:-1:-1;;;;;;17039:23:0;;::::1;-1:-1:-1::0;;;;;17056:6:0;::::1;17039:23;::::0;;;17073:19:::1;::::0;;17115:15:::1;:22:::0;::::1;17103:9;:34:::0;17153:40:::1;::::0;17056:6;;-1:-1:-1;;;;;;;;;;;17153:40:0;17056:6;;17153:40:::1;16975:226:::0;:::o;28917:143::-;-1:-1:-1;;;;;29025:18:0;;;28998:7;29025:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28917:143::o;33863:110::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33930:27:0::1;33960:5;33930:27:::0;;;:18:::1;:27;::::0;;;;:35;;-1:-1:-1;;33930:35:0::1;::::0;;33863:110::o;16558:244::-;15834:12;:10;:12::i;:::-;15824:6;;-1:-1:-1;;;;;15824:6:0;;;:22;;;15816:67;;;;;-1:-1:-1;;;15816:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;15816:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;16647:22:0;::::1;16639:73;;;;-1:-1:-1::0;;;16639:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16749:6;::::0;;16728:38:::1;::::0;-1:-1:-1;;;;;16728:38:0;;::::1;::::0;16749:6;::::1;::::0;-1:-1:-1;;;;;;;;;;;16728:38:0;::::1;16777:6;:17:::0;;-1:-1:-1;;;;;;16777:17:0::1;-1:-1:-1::0;;;;;16777:17:0;;;::::1;::::0;;;::::1;::::0;;16558:244::o;8011:106::-;8099:10;8011:106;:::o;38013:337::-;-1:-1:-1;;;;;38106:19:0;;38098:68;;;;-1:-1:-1;;;38098:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38185:21:0;;38177:68;;;;-1:-1:-1;;;38177:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38258:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;38310:32;;;;;;;;;;;;;;;;;38013:337;;;:::o;38358:1813::-;-1:-1:-1;;;;;38480:18:0;;38472:68;;;;-1:-1:-1;;;38472:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38559:16:0;;38551:64;;;;-1:-1:-1;;;38551:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38643:1;38634:6;:10;38626:64;;;;-1:-1:-1;;;38626:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38712:7;:5;:7::i;:::-;-1:-1:-1;;;;;38704:15:0;:4;-1:-1:-1;;;;;38704:15:0;;;:32;;;;;38729:7;:5;:7::i;:::-;-1:-1:-1;;;;;38723:13:0;:2;-1:-1:-1;;;;;38723:13:0;;;38704:32;38701:125;;;38769:12;;38759:6;:22;;38751:75;;;;-1:-1:-1;;;38751:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39121:28;39152:24;39170:4;39152:9;:24::i;:::-;39121:55;;39224:12;;39200:20;:36;39197:112;;-1:-1:-1;39285:12:0;;39197:112;39380:29;;39356:53;;;;;;;39438;;-1:-1:-1;39475:16:0;;-1:-1:-1;;;39475:16:0;;;;39474:17;39438:53;:91;;;;-1:-1:-1;39516:13:0;;-1:-1:-1;;;;;39508:21:0;;;39516:13;;39508:21;;39438:91;:129;;;;-1:-1:-1;39546:21:0;;-1:-1:-1;;;39546:21:0;;;;39438:129;39420:318;;;39617:29;;39594:52;;39690:36;39705:20;39690:14;:36::i;:::-;-1:-1:-1;;;;;39946:24:0;;39819:12;39946:24;;;:18;:24;;;;;;39834:4;;39946:24;;;:50;;-1:-1:-1;;;;;;39974:22:0;;;;;;:18;:22;;;;;;;;39946:50;39943:96;;;-1:-1:-1;40022:5:0;39943:96;40125:38;40140:4;40145:2;40148:6;40155:7;40125:14;:38::i;:::-;38358:1813;;;;;;:::o;4421:192::-;4507:7;4543:12;4535:6;;;;4527:29;;;;-1:-1:-1;;;4527:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4579:5:0;;;4421:192::o;36032:163::-;36073:7;36094:15;36111;36130:19;:17;:19::i;:::-;36093:56;;-1:-1:-1;36093:56:0;-1:-1:-1;36167:20:0;36093:56;;36167:11;:20::i;:::-;36160:27;;;;36032:163;:::o;5819:132::-;5877:7;5904:39;5908:1;5911;5904:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5897:46;5819:132;-1:-1:-1;;;5819:132:0:o;3518:181::-;3576:7;3608:5;;;3632:6;;;;3624:46;;;;;-1:-1:-1;;;3624:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;34830:419;34889:7;34898;34907;34916;34925;34934;34955:23;34980:12;34994:18;35016:20;35028:7;35016:11;:20::i;:::-;34954:82;;;;;;35048:15;35065:23;35090:12;35106:50;35118:7;35127:4;35133:10;35145;:8;:10::i;:::-;35106:11;:50::i;:::-;35047:109;;;;-1:-1:-1;35047:109:0;;-1:-1:-1;35207:15:0;;-1:-1:-1;35224:4:0;;-1:-1:-1;35230:10:0;;-1:-1:-1;34830:419:0;;-1:-1:-1;;;;;34830:419:0:o;3982:136::-;4040:7;4067:43;4071:1;4074;4067:43;;;;;;;;;;;;;;;;;:3;:43::i;4872:471::-;4930:7;5175:6;5171:47;;-1:-1:-1;5205:1:0;5198:8;;5171:47;5242:5;;;5246:1;5242;:5;:1;5266:5;;;;;:10;5258:56;;;;-1:-1:-1;;;5258:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40179:985;27248:16;:23;;-1:-1:-1;;;;27248:23:0;-1:-1:-1;;;27248:23:0;;;;40330:27:::1;:20:::0;40355:1:::1;40330:24;:27::i;:::-;40315:42:::0;-1:-1:-1;40368:17:0::1;40388:30;:20:::0;40315:42;40388:24:::1;:30::i;:::-;40368:50:::0;-1:-1:-1;40721:21:0::1;40787:22;40804:4:::0;40787:16:::1;:22::i;:::-;40940:18;40961:41;:21;40987:14:::0;40961:25:::1;:41::i;:::-;40940:62;;41052:35;41065:9;41076:10;41052:12;:35::i;:::-;41113:43;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;;;;;;::::1;::::0;;;;;;;::::1;-1:-1:-1::0;;27294:16:0;:24;;-1:-1:-1;;;;27294:24:0;;;-1:-1:-1;;;40179:985:0:o;42363:834::-;42474:7;42470:40;;42496:14;:12;:14::i;:::-;-1:-1:-1;;;;;42535:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;42559:22:0;;;;;;:11;:22;;;;;;;;42558:23;42535:46;42531:597;;;42598:48;42620:6;42628:9;42639:6;42598:21;:48::i;:::-;42531:597;;;-1:-1:-1;;;;;42669:19:0;;;;;;:11;:19;;;;;;;;42668:20;:46;;;;-1:-1:-1;;;;;;42692:22:0;;;;;;:11;:22;;;;;;;;42668:46;42664:464;;;42731:46;42751:6;42759:9;42770:6;42731:19;:46::i;42664:464::-;-1:-1:-1;;;;;42800:19:0;;;;;;:11;:19;;;;;;;;42799:20;:47;;;;-1:-1:-1;;;;;;42824:22:0;;;;;;:11;:22;;;;;;;;42823:23;42799:47;42795:333;;;42863:44;42881:6;42889:9;42900:6;42863:17;:44::i;42795:333::-;-1:-1:-1;;;;;42929:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;42952:22:0;;;;;;:11;:22;;;;;;;;42929:45;42925:203;;;42991:48;43013:6;43021:9;43032:6;42991:21;:48::i;42925:203::-;43072:44;43090:6;43098:9;43109:6;43072:17;:44::i;:::-;43152:7;43148:41;;43174:15;:13;:15::i;:::-;42363:834;;;;:::o;36203:561::-;36300:7;;36336;;36253;;;;;36360:289;36384:9;:16;36380:20;;36360:289;;;36450:7;36426;:21;36434:9;36444:1;36434:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36434:12:0;36426:21;;;;;;;;;;;;;:31;;:66;;;36485:7;36461;:21;36469:9;36479:1;36469:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36469:12:0;36461:21;;;;;;;;;;;;;:31;36426:66;36422:97;;;36502:7;;36511;;36494:25;;;;;;;;;36422:97;36544:34;36556:7;:21;36564:9;36574:1;36564:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36564:12:0;36556:21;;;;;;;;;;;;;36544:7;;:11;:34::i;:::-;36534:44;;36603:34;36615:7;:21;36623:9;36633:1;36623:12;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36623:12:0;36615:21;;;;;;;;;;;;;36603:7;;:11;:34::i;:::-;36593:44;-1:-1:-1;36402:3:0;;36360:289;;;-1:-1:-1;36685:7:0;;36673;;:20;;:11;:20::i;:::-;36663:7;:30;36659:61;;;36703:7;;36712;;36695:25;;;;;;;;36659:61;36739:7;;-1:-1:-1;36748:7:0;-1:-1:-1;36203:561:0;;;:::o;6447:278::-;6533:7;6568:12;6561:5;6553:28;;;;-1:-1:-1;;;6553:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6592:9;6608:1;6604;:5;;;;;;;6447:278;-1:-1:-1;;;;;6447:278:0:o;35257:330::-;35317:7;35326;35335;35355:12;35370:24;35386:7;35370:15;:24::i;:::-;35355:39;;35405:18;35426:30;35448:7;35426:21;:30::i;:::-;35405:51;-1:-1:-1;35467:23:0;35493:33;35405:51;35493:17;:7;35505:4;35493:11;:17::i;:::-;:21;;:33::i;:::-;35467:59;35562:4;;-1:-1:-1;35568:10:0;;-1:-1:-1;35257:330:0;;-1:-1:-1;;;35257:330:0:o;35595:429::-;35710:7;;;;35766:24;:7;35778:11;35766;:24::i;:::-;35748:42;-1:-1:-1;35801:12:0;35816:21;:4;35825:11;35816:8;:21::i;:::-;35801:36;-1:-1:-1;35848:18:0;35869:27;:10;35884:11;35869:14;:27::i;:::-;35848:48;-1:-1:-1;35907:23:0;35933:33;35848:48;35933:17;:7;35945:4;35933:11;:17::i;:33::-;35985:7;;;;-1:-1:-1;36011:4:0;;-1:-1:-1;35595:429:0;;-1:-1:-1;;;;;;;35595:429:0:o;41172:589::-;41322:16;;;41336:1;41322:16;;;41298:21;41322:16;;;;;41298:21;41322:16;;;;;;;;;;-1:-1:-1;41322:16:0;41298:40;;41367:4;41349;41354:1;41349:7;;;;;;;;-1:-1:-1;;;;;41349:23:0;;;:7;;;;;;;;;;:23;;;;41393:15;;:22;;;-1:-1:-1;;;41393:22:0;;;;:15;;;;;:20;;:22;;;;;41349:7;;41393:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41393:22:0;41383:7;;:4;;41388:1;;41383:7;;;;;;-1:-1:-1;;;;;41383:32:0;;;:7;;;;;;;;;:32;41460:15;;41428:62;;41445:4;;41460:15;41478:11;41428:8;:62::i;:::-;41529:15;;:224;;-1:-1:-1;;;41529:224:0;;;;;;;;:15;:224;;;;;;41707:4;41529:224;;;;;;41727:15;41529:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41529:15:0;;;;:66;;41610:11;;41680:4;;41707;41727:15;41529:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41769:513;41949:15;;41917:62;;41934:4;;-1:-1:-1;;;;;41949:15:0;41967:11;41917:8;:62::i;:::-;42022:15;;-1:-1:-1;;;;;42022:15:0;:31;42061:9;42094:4;42114:11;42022:15;;42226:7;:5;:7::i;:::-;42248:15;42022:252;;;;;;;;;;;;;-1:-1:-1;;;;;42022:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42022:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37483:250;37529:7;;:12;:34;;;;-1:-1:-1;37545:13:0;;:18;37529:34;37526:46;;;37565:7;;37526:46;37610:7;;;37592:15;:25;37652:13;;;37628:21;:37;-1:-1:-1;37686:11:0;;;;37708:17;37483:250;:::o;44309:566::-;44412:15;44429:23;44454:12;44468:23;44493:12;44507:18;44529:19;44540:7;44529:10;:19::i;:::-;-1:-1:-1;;;;;44577:15:0;;;;;;:7;:15;;;;;;44411:137;;-1:-1:-1;44411:137:0;;-1:-1:-1;44411:137:0;;-1:-1:-1;44411:137:0;-1:-1:-1;44411:137:0;-1:-1:-1;44411:137:0;-1:-1:-1;44577:28:0;;44597:7;44577:19;:28::i;:::-;-1:-1:-1;;;;;44559:15:0;;;;;;:7;:15;;;;;;;;:46;;;;44634:7;:15;;;;:28;;44654:7;44634:19;:28::i;:::-;-1:-1:-1;;;;;44616:15:0;;;;;;;:7;:15;;;;;;:46;;;;44694:18;;;;;;;:39;;44717:15;44694:22;:39::i;:::-;-1:-1:-1;;;;;44673:18:0;;;;;;:7;:18;;;;;:60;44747:26;44762:10;44747:14;:26::i;:::-;44784:23;44796:4;44802;44784:11;:23::i;:::-;44840:9;-1:-1:-1;;;;;44823:44:0;44832:6;-1:-1:-1;;;;;44823:44:0;;44851:15;44823:44;;;;;;;;;;;;;;;;;;44309:566;;;;;;;;;:::o;43715:586::-;43816:15;43833:23;43858:12;43872:23;43897:12;43911:18;43933:19;43944:7;43933:10;:19::i;:::-;-1:-1:-1;;;;;43981:15:0;;;;;;:7;:15;;;;;;43815:137;;-1:-1:-1;43815:137:0;;-1:-1:-1;43815:137:0;;-1:-1:-1;43815:137:0;-1:-1:-1;43815:137:0;-1:-1:-1;43815:137:0;-1:-1:-1;43981:28:0;;43815:137;43981:19;:28::i;:::-;-1:-1:-1;;;;;43963:15:0;;;;;;;:7;:15;;;;;;;;:46;;;;44041:18;;;;;:7;:18;;;;;:39;;44064:15;44041:22;:39::i;:::-;-1:-1:-1;;;;;44020:18:0;;;;;;:7;:18;;;;;;;;:60;;;;44112:7;:18;;;;:39;;44135:15;44112:22;:39::i;43205:502::-;43304:15;43321:23;43346:12;43360:23;43385:12;43399:18;43421:19;43432:7;43421:10;:19::i;:::-;-1:-1:-1;;;;;43469:15:0;;;;;;:7;:15;;;;;;43303:137;;-1:-1:-1;43303:137:0;;-1:-1:-1;43303:137:0;;-1:-1:-1;43303:137:0;-1:-1:-1;43303:137:0;-1:-1:-1;43303:137:0;-1:-1:-1;43469:28:0;;43303:137;43469:19;:28::i;32900:642::-;33003:15;33020:23;33045:12;33059:23;33084:12;33098:18;33120:19;33131:7;33120:10;:19::i;:::-;-1:-1:-1;;;;;33168:15:0;;;;;;:7;:15;;;;;;33002:137;;-1:-1:-1;33002:137:0;;-1:-1:-1;33002:137:0;;-1:-1:-1;33002:137:0;-1:-1:-1;33002:137:0;-1:-1:-1;33002:137:0;-1:-1:-1;33168:28:0;;33188:7;33168:19;:28::i;:::-;-1:-1:-1;;;;;33150:15:0;;;;;;:7;:15;;;;;;;;:46;;;;33225:7;:15;;;;:28;;33245:7;33225:19;:28::i;37745:125::-;37799:15;;37789:7;:25;37841:21;;37825:13;:37;37745:125::o;37143:154::-;37207:7;37234:55;37273:5;37234:20;37246:7;;37234;:11;;:20;;;;:::i;37305:166::-;37375:7;37402:61;37447:5;37402:26;37414:13;;37402:7;:11;;:26;;;;:::i;36776:355::-;36839:19;36862:10;:8;:10::i;:::-;36839:33;-1:-1:-1;36883:18:0;36904:27;:10;36839:33;36904:14;:27::i;:::-;36983:4;36967:22;;;;:7;:22;;;;;;36883:48;;-1:-1:-1;36967:38:0;;36883:48;36967:26;:38::i;:::-;36958:4;36942:22;;;;:7;:22;;;;;;;;:63;;;;37019:11;:26;;;;;;37016:107;;;37101:4;37085:22;;;;:7;:22;;;;;;:38;;37112:10;37085:26;:38::i;:::-;37076:4;37060:22;;;;:7;:22;;;;;:63;37016:107;36776:355;;;:::o;34675:147::-;34753:7;;:17;;34765:4;34753:11;:17::i;:::-;34743:7;:27;34794:10;;:20;;34809:4;34794:14;:20::i;:::-;34781:10;:33;-1:-1:-1;;34675:147:0:o
Swarm Source
ipfs://52342365e87259eab3edf19aaf4bb5d89e9dbba9cda27f32cd1ccb5e9119917a
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.