ERC-20
Overview
Max Total Supply
100,000,000,000,000,000 KWORLD
Holders
84
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.608977139 KWORLDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KONGSWORLD
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-29 */ // File: contracts/KWORLD.sol pragma solidity ^0.8.13; // 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) { function _msgSender() internal view virtual returns (address) { 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. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { 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; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract KONGSWORLD is Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } mapping (address => uint256) private _rOwned; mapping (address => uint256) private _tOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private botWallets; mapping (address => bool) private _isExcludedFromFee; mapping (address => bool) private isExchangeWallet; uint256 private constant MAX = ~uint256(0); uint256 private _tTotal = 10000000000 * 10 ** 7 * 10 ** 9; uint256 private _rTotal = (MAX - (MAX % _tTotal)); uint256 private _tFeeTotal; string public _name = "KONGSWORLD"; string public _symbol = "KWORLD"; uint8 public _decimals = 9; bool private tradingOpen = true; IUniswapV2Router02 public uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public uniswapV2Pair = address(0); bool inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; uint256 public _maxBuyAmount = 1500000000000 * 10**9; uint256 public numTokensSellToAddToLiquidity = 5000000000000 * 10**9; uint256 private _largeSellNumOfTokens = 10000000000000 * 10**9; address public marketingWallet = 0xF86b47BE0c315ae0e834D278F6042e361dDfb68f; address public devWallet = 0x0e941C792cFC1D3B8A2B836432D06404DBC28296; address public deadWallet = 0x000000000000000000000000000000000000dEaD; struct Distribution { uint256 sharePercentage; uint256 marketingFeePercentage; uint256 devFeePercentage; } struct TaxFees { uint256 reflectionFee; uint256 liquidityFee; uint256 sellReflectionFee; uint256 sellLiquidityFee; uint256 superSellOffFee; } bool private doTakeFees; bool private isSellTxn; TaxFees public taxFees; Distribution public distribution; constructor () { _rOwned[_msgSender()] = _rTotal; _isExcludedFromFee[owner()] = true; _isExcludedFromFee[_msgSender()] = true; taxFees = TaxFees(2,4,1,2,10); distribution = Distribution(75, 40, 60); emit Transfer(address(0), _msgSender(), _tTotal); } 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) { 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 totalFees() public view returns (uint256) { return _tFeeTotal; } function airDrops(address[] calldata newholders, uint256[] calldata amounts) external { uint256 iterator = 0; require(_isExcludedFromFee[_msgSender()], "Airdrop can only be done by excluded from fee"); require(newholders.length == amounts.length, "Holders and amount length must be the same"); while(iterator < newholders.length){ _tokenTransfer(_msgSender(), newholders[iterator], amounts[iterator] * 10**9, false, false); iterator += 1; } } function deliver(uint256 tAmount) public { address sender = _msgSender(); (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 excludeFromFee(address[] calldata addresses) public onlyOwner { addRemoveFee(addresses, true); } function includeInFee(address[] calldata addresses) public onlyOwner { addRemoveFee(addresses, false); } function addExchange(address[] calldata addresses) public onlyOwner { addRemoveExchange(addresses, true); } function removeExchange(address[] calldata addresses) public onlyOwner { addRemoveExchange(addresses, false); } function createV2Pair() external onlyOwner { require(uniswapV2Pair == address(0),"UniswapV2Pair has already been set"); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); } function addRemoveExchange(address[] calldata addresses, bool flag) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; isExchangeWallet[addr] = flag; } } function addRemoveFee(address[] calldata addresses, bool flag) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; _isExcludedFromFee[addr] = flag; } } function setLargeSellNumOfTokens(uint256 largeSellNumOfTokens) external onlyOwner { _largeSellNumOfTokens = largeSellNumOfTokens * 10**9; } function setMaxBuyAmount(uint256 maxBuyAmount) external onlyOwner() { _maxBuyAmount = maxBuyAmount * 10**9; } function setTaxFees(uint256 reflectionFee, uint256 liquidityFee, uint256 sellReflectionFee, uint256 sellLiquidityFee, uint256 superSellOffFee) external onlyOwner { taxFees.reflectionFee = reflectionFee; taxFees.liquidityFee = liquidityFee; taxFees.sellLiquidityFee = sellLiquidityFee; taxFees.sellReflectionFee = sellReflectionFee; taxFees.superSellOffFee = superSellOffFee; } function setDistribution(uint256 marketingFeePercentage, uint256 devFeePercentage, uint256 sharePercentage) external onlyOwner { require(marketingFeePercentage.add(devFeePercentage) == 100, "Fee percentage must equal 100"); distribution.marketingFeePercentage = marketingFeePercentage; distribution.devFeePercentage = devFeePercentage; distribution.sharePercentage = sharePercentage; } function setNumTokensToSell(uint256 numTokensSellToAddToLiquidity_) external onlyOwner { numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidity_ * 10**9; } function setWallets(address _marketingWallet, address _devWallet) external onlyOwner { marketingWallet = _marketingWallet; devWallet = _devWallet; } function isAddressBlocked(address addr) public view returns (bool) { return botWallets[addr]; } function blockAddresses(address[] memory addresses) external onlyOwner() { blockUnblockAddress(addresses, true); } function unblockAddresses(address[] memory addresses) external onlyOwner() { blockUnblockAddress(addresses, false); } function blockUnblockAddress(address[] memory addresses, bool doBlock) private { for (uint256 i = 0; i < addresses.length; i++) { address addr = addresses[i]; if(doBlock) { botWallets[addr] = true; } else { delete botWallets[addr]; } } } function getContractTokenBalance() public view returns (uint256) { return balanceOf(address(this)); } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } 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; 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); } function calculateTaxFee(uint256 _amount) private view returns (uint256) { uint256 reflectionFee = 0; if(doTakeFees) { reflectionFee = taxFees.reflectionFee; if(isSellTxn) { reflectionFee = reflectionFee.add(taxFees.sellReflectionFee); } } return _amount.mul(reflectionFee).div(10**2); } function calculateLiquidityFee(uint256 _amount) private view returns (uint256) { uint256 totalLiquidityFee = 0; if(doTakeFees) { totalLiquidityFee = taxFees.liquidityFee; if(isSellTxn) { totalLiquidityFee = totalLiquidityFee.add(taxFees.sellLiquidityFee); if(_amount >= _largeSellNumOfTokens) { totalLiquidityFee = totalLiquidityFee.add(taxFees.superSellOffFee); } } } return _amount.mul(totalLiquidityFee).div(10**2); } 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"); require(uniswapV2Pair != address(0),"UniswapV2Pair has not been set"); bool isSell = false; bool takeFees = !_isExcludedFromFee[from] && !_isExcludedFromFee[to] && from != owner() && to != owner(); //block the bots, but allow them to transfer to dead wallet if they are blocked if(from != owner() && to != owner() && to != deadWallet) { require(!botWallets[from] && !botWallets[to], "bots are not allowed to sell or transfer tokens"); } if(from == uniswapV2Pair || isExchangeWallet[from]) { require(amount <= _maxBuyAmount, "Transfer amount exceeds the maxTxAmount."); } if(from != uniswapV2Pair && to == uniswapV2Pair || (!isExchangeWallet[from] && isExchangeWallet[to])) { //if sell //only tax if tokens are going back to Uniswap isSell = true; sellTaxTokens(); } if(from != uniswapV2Pair && to != uniswapV2Pair && !isExchangeWallet[from] && !isExchangeWallet[to]) { takeFees = false; } _tokenTransfer(from, to, amount, takeFees, isSell); } function sellTaxTokens() private { uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= numTokensSellToAddToLiquidity && !inSwapAndLiquify && swapAndLiquifyEnabled) { //distribution shares is the percentage to be shared between marketing, charity, and dev wallets //remainder will be for the liquidity pool uint256 balanceToShareTokens = contractTokenBalance.mul(distribution.sharePercentage).div(100); uint256 liquidityPoolTokens = contractTokenBalance.sub(balanceToShareTokens); //just in case distribution Share Percentage is set to 100%, there will be no tokens to be swapped for liquidity pool if(liquidityPoolTokens > 0) { //add liquidity swapAndLiquify(liquidityPoolTokens); } //send eth to wallets (marketing, charity, dev) distributeShares(balanceToShareTokens); } } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = contractTokenBalance.div(2); uint256 otherHalf = contractTokenBalance.sub(half); uint256 initialBalance = address(this).balance; swapTokensForEth(half); uint256 newBalance = address(this).balance.sub(initialBalance); addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } 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 ); } function distributeShares(uint256 balanceToShareTokens) private lockTheSwap { swapTokensForEth(balanceToShareTokens); uint256 balanceToShare = address(this).balance; uint256 marketingShare = balanceToShare.mul(distribution.marketingFeePercentage).div(100); uint256 devShare = balanceToShare.mul(distribution.devFeePercentage).div(100); payable(marketingWallet).transfer(marketingShare); payable(devWallet).transfer(devShare); } 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 ); } //this method is responsible for taking all fee, if takeFee is true function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFees, bool isSell) private { doTakeFees = takeFees; isSellTxn = isSell; _transferStandard(sender, recipient, amount); } 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"newholders","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airDrops","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"blockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"createV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"distribution","outputs":[{"internalType":"uint256","name":"sharePercentage","type":"uint256"},{"internalType":"uint256","name":"marketingFeePercentage","type":"uint256"},{"internalType":"uint256","name":"devFeePercentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getContractTokenBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"includeInFee","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":"addr","type":"address"}],"name":"isAddressBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTokensSellToAddToLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"marketingFeePercentage","type":"uint256"},{"internalType":"uint256","name":"devFeePercentage","type":"uint256"},{"internalType":"uint256","name":"sharePercentage","type":"uint256"}],"name":"setDistribution","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"largeSellNumOfTokens","type":"uint256"}],"name":"setLargeSellNumOfTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensSellToAddToLiquidity_","type":"uint256"}],"name":"setNumTokensToSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellReflectionFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"superSellOffFee","type":"uint256"}],"name":"setTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setWallets","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":[],"name":"taxFees","outputs":[{"internalType":"uint256","name":"reflectionFee","type":"uint256"},{"internalType":"uint256","name":"liquidityFee","type":"uint256"},{"internalType":"uint256","name":"sellReflectionFee","type":"uint256"},{"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"superSellOffFee","type":"uint256"}],"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":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"unblockAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526a52b7d2dcc80cd2e400000060078190556200002390600019620003ac565b6200003190600019620003cf565b60085560408051808201909152600a8082526912d3d391d4d5d3d4931160b21b602090920191825262000065918162000306565b506040805180820190915260068082526512d5d3d4931160d21b60209092019182526200009591600b9162000306565b50600c8054757a250d5630b4cf539739df2c5dacb4c659f2488d01096001600160b01b0319909116179055600d8054600161ff0160a01b031916600160a81b179055685150ae84a8cdf00000600e5569010f0cf064dd59200000600f5569021e19e0c9bab2400000601055601180546001600160a01b031990811673f86b47be0c315ae0e834d278f6042e361ddfb68f17909155601280548216730e941c792cfc1d3b8a2b836432d06404dbc282961790556013805490911661dead1790553480156200016157600080fd5b50600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600854336000908152600160208190526040822092909255600590620001d16000546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000908120805460ff1916921515929092179091556001906005906200020a3390565b6001600160a01b031681526020808201929092526040908101600020805460ff191693151593909317909255815160a0810183526002808252600482840181905260018386018190526060808501849052600a6080909501859052601484905560159290925560165560179190915560189190915582519081018352604b8082526028928201839052603c91909301819052601992909255601a55601b55620002b03390565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600754604051620002f891815260200190565b60405180910390a362000431565b8280546200031490620003f5565b90600052602060002090601f01602090048101928262000338576000855562000383565b82601f106200035357805160ff191683800117855562000383565b8280016001018555821562000383579182015b828111156200038357825182559160200191906001019062000366565b506200039192915062000395565b5090565b5b8082111562000391576000815560010162000396565b600082620003ca57634e487b7160e01b600052601260045260246000fd5b500690565b600082821015620003f057634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200040a57607f821691505b6020821081036200042b57634e487b7160e01b600052602260045260246000fd5b50919050565b612d2080620004416000396000f3fe6080604052600436106102b25760003560e01c8063715018a611610175578063ab0d8b85116100dc578063d3f6a15711610095578063dd62ed3e1161006f578063dd62ed3e14610898578063e7dad4f9146108de578063f2fde38b14610917578063f34eb0b81461093757600080fd5b8063d3f6a15714610838578063dc0aa9cf14610858578063dcda6af31461087857600080fd5b8063ab0d8b85146107a3578063b09f1266146107c3578063b6a99872146107d8578063c49b9a80146107ed578063d12a76881461080d578063d28d88521461082357600080fd5b80638da5cb5b1161012e5780638da5cb5b146106f05780638ea5220f1461070e57806395d89b411461072e5780639b0e2e8614610743578063a457c2d714610763578063a9059cbb1461078357600080fd5b8063715018a61461063b57806371b9189c1461065057806375f0a874146106705780637ca2ea441461069057806385141a77146106b057806385d4787b146106d057600080fd5b8063317d9453116102195780634a74bb02116101d25780634a74bb02146105475780635342acb41461056857806354ed2dc2146105a15780635ee58efc146105c15780636f343052146105fb57806370a082311461061b57600080fd5b8063317d94531461049857806332424aa3146104ad57806339509351146104c75780633bd5d173146104e75780634549b0391461050757806349bd5a5e1461052757600080fd5b806313114a9d1161026b57806313114a9d146103ca5780631694505e146103df57806318160ddd1461041d57806323b872dd146104325780632d83811914610452578063313ce5671461047257600080fd5b8063024022f7146102be578063035ae135146102e05780630492f0551461030057806306fdde0314610329578063095ea7b31461034b5780630ddc09761461037b57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612720565b610957565b005b3480156102ec57600080fd5b506102de6102fb366004612720565b61099a565b34801561030c57600080fd5b50610316600e5481565b6040519081526020015b60405180910390f35b34801561033557600080fd5b5061033e6109d0565b6040516103209190612762565b34801561035757600080fd5b5061036b6103663660046127dc565b610a62565b6040519015158152602001610320565b34801561038757600080fd5b506014546015546016546017546018546103a2949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610320565b3480156103d657600080fd5b50600954610316565b3480156103eb57600080fd5b50600c54610405906201000090046001600160a01b031681565b6040516001600160a01b039091168152602001610320565b34801561042957600080fd5b50600754610316565b34801561043e57600080fd5b5061036b61044d366004612808565b610a79565b34801561045e57600080fd5b5061031661046d366004612849565b610ae2565b34801561047e57600080fd5b50600c5460ff165b60405160ff9091168152602001610320565b3480156104a457600080fd5b50610316610b66565b3480156104b957600080fd5b50600c546104869060ff1681565b3480156104d357600080fd5b5061036b6104e23660046127dc565b610b76565b3480156104f357600080fd5b506102de610502366004612849565b610bac565b34801561051357600080fd5b50610316610522366004612872565b610c22565b34801561053357600080fd5b50600d54610405906001600160a01b031681565b34801561055357600080fd5b50600d5461036b90600160a81b900460ff1681565b34801561057457600080fd5b5061036b61058336600461289e565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ad57600080fd5b506102de6105bc366004612849565b610caf565b3480156105cd57600080fd5b50601954601a54601b546105e092919083565b60408051938452602084019290925290820152606001610320565b34801561060757600080fd5b506102de6106163660046128bb565b610ced565b34801561062757600080fd5b5061031661063636600461289e565b610d7e565b34801561064757600080fd5b506102de610da0565b34801561065c57600080fd5b506102de61066b366004612720565b610e14565b34801561067c57600080fd5b50601154610405906001600160a01b031681565b34801561069c57600080fd5b506102de6106ab366004612849565b610e4a565b3480156106bc57600080fd5b50601354610405906001600160a01b031681565b3480156106dc57600080fd5b506102de6106eb3660046128fd565b610e88565b3480156106fc57600080fd5b506000546001600160a01b0316610405565b34801561071a57600080fd5b50601254610405906001600160a01b031681565b34801561073a57600080fd5b5061033e610ec0565b34801561074f57600080fd5b506102de61075e3660046128fd565b610ecf565b34801561076f57600080fd5b5061036b61077e3660046127dc565b610f04565b34801561078f57600080fd5b5061036b61079e3660046127dc565b610f53565b3480156107af57600080fd5b506102de6107be366004612720565b610f60565b3480156107cf57600080fd5b5061033e610f96565b3480156107e457600080fd5b506102de611024565b3480156107f957600080fd5b506102de6108083660046129c2565b611242565b34801561081957600080fd5b50610316600f5481565b34801561082f57600080fd5b5061033e6112c4565b34801561084457600080fd5b506102de6108533660046129dd565b6112d1565b34801561086457600080fd5b506102de610873366004612a16565b611329565b34801561088457600080fd5b506102de610893366004612a51565b61136d565b3480156108a457600080fd5b506103166108b33660046129dd565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156108ea57600080fd5b5061036b6108f936600461289e565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561092357600080fd5b506102de61093236600461289e565b6114c0565b34801561094357600080fd5b506102de610952366004612849565b6115aa565b6000546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190612abd565b60405180910390fd5b610996828260006115e8565b5050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161098190612abd565b61099682826001611658565b6060600a80546109df90612af2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b90612af2565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b6000610a6f3384846116c2565b5060015b92915050565b6000610a868484846117e6565b610ad88433610ad385604051806060016040528060288152602001612c9e602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611c91565b6116c2565b5060019392505050565b6000600854821115610b495760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610981565b6000610b53611ccb565b9050610b5f8382611cee565b9392505050565b6000610b7130610d7e565b905090565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610a6f918590610ad39086611d30565b336000610bb883611d8f565b505050506001600160a01b038416600090815260016020526040902054919250610be491905082611dde565b6001600160a01b038316600090815260016020526040902055600854610c0a9082611dde565b600855600954610c1a9084611d30565b600955505050565b6000600754831115610c765760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610981565b81610c95576000610c8684611d8f565b50939550610a73945050505050565b6000610ca084611d8f565b50929550610a73945050505050565b6000546001600160a01b03163314610cd95760405162461bcd60e51b815260040161098190612abd565b610ce781633b9aca00612b42565b60105550565b6000546001600160a01b03163314610d175760405162461bcd60e51b815260040161098190612abd565b610d218383611d30565b606414610d705760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c203130300000006044820152606401610981565b601a92909255601b55601955565b6001600160a01b038116600090815260016020526040812054610a7390610ae2565b6000546001600160a01b03163314610dca5760405162461bcd60e51b815260040161098190612abd565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610e3e5760405162461bcd60e51b815260040161098190612abd565b610996828260016115e8565b6000546001600160a01b03163314610e745760405162461bcd60e51b815260040161098190612abd565b610e8281633b9aca00612b42565b600f5550565b6000546001600160a01b03163314610eb25760405162461bcd60e51b815260040161098190612abd565b610ebd816001611e20565b50565b6060600b80546109df90612af2565b6000546001600160a01b03163314610ef95760405162461bcd60e51b815260040161098190612abd565b610ebd816000611e20565b6000610a6f3384610ad385604051806060016040528060258152602001612cc6602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611c91565b6000610a6f3384846117e6565b6000546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161098190612abd565b61099682826000611658565b600b8054610fa390612af2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf90612af2565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b505050505081565b6000546001600160a01b0316331461104e5760405162461bcd60e51b815260040161098190612abd565b600d546001600160a01b0316156110b25760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610981565b600c60029054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190612b61565b6001600160a01b031663c9c6539630600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af9190612b61565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190612b61565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461126c5760405162461bcd60e51b815260040161098190612abd565b600d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112b990831515815260200190565b60405180910390a150565b600a8054610fa390612af2565b6000546001600160a01b031633146112fb5760405162461bcd60e51b815260040161098190612abd565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6000546001600160a01b031633146113535760405162461bcd60e51b815260040161098190612abd565b601494909455601592909255601791909155601655601855565b3360009081526005602052604081205460ff166113e25760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610981565b8382146114445760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610981565b838110156114b9576114a73386868481811061146257611462612b7e565b9050602002016020810190611477919061289e565b85858581811061148957611489612b7e565b90506020020135633b9aca0061149f9190612b42565b600080611eb1565b6114b2600182612b94565b9050611444565b5050505050565b6000546001600160a01b031633146114ea5760405162461bcd60e51b815260040161098190612abd565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161098190612abd565b6115e281633b9aca00612b42565b600e5550565b60005b8281101561165257600084848381811061160757611607612b7e565b905060200201602081019061161c919061289e565b6001600160a01b03166000908152600560205260409020805460ff1916841515179055508061164a81612bac565b9150506115eb565b50505050565b60005b8281101561165257600084848381811061167757611677612b7e565b905060200201602081019061168c919061289e565b6001600160a01b03166000908152600660205260409020805460ff191684151517905550806116ba81612bac565b91505061165b565b6001600160a01b0383166117245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610981565b6001600160a01b0382166117855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610981565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661184a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610981565b6001600160a01b0382166118ac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610981565b6000811161190e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610981565b600d546001600160a01b03166119665760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610981565b6001600160a01b038316600090815260056020526040812054819060ff161580156119aa57506001600160a01b03841660009081526005602052604090205460ff16155b80156119c457506000546001600160a01b03868116911614155b80156119de57506000546001600160a01b03858116911614155b90506119f26000546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611a2157506000546001600160a01b03858116911614155b8015611a3b57506013546001600160a01b03858116911614155b15611ae6576001600160a01b03851660009081526004602052604090205460ff16158015611a8257506001600160a01b03841660009081526004602052604090205460ff16155b611ae65760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610981565b600d546001600160a01b0386811691161480611b1a57506001600160a01b03851660009081526006602052604090205460ff165b15611b8257600e54831115611b825760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610981565b600d546001600160a01b03868116911614801590611bad5750600d546001600160a01b038581169116145b80611bf457506001600160a01b03851660009081526006602052604090205460ff16158015611bf457506001600160a01b03841660009081526006602052604090205460ff165b15611c055760019150611c05611ee5565b600d546001600160a01b03868116911614801590611c315750600d546001600160a01b03858116911614155b8015611c5657506001600160a01b03851660009081526006602052604090205460ff16155b8015611c7b57506001600160a01b03841660009081526006602052604090205460ff16155b15611c84575060005b6114b98585858486611eb1565b60008184841115611cb55760405162461bcd60e51b81526004016109819190612762565b506000611cc28486612bc5565b95945050505050565b6000806000611cd8611f75565b9092509050611ce78282611cee565b9250505090565b6000610b5f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611faa565b600080611d3d8385612b94565b905083811015610b5f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610981565b6000806000806000806000806000611da68a611fd8565b9250925092506000806000611dc48d8686611dbf611ccb565b61201a565b919f909e50909c50959a5093985091965092945050505050565b6000610b5f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c91565b60005b8251811015611eac576000838281518110611e4057611e40612b7e565b602002602001015190508215611e78576001600160a01b0381166000908152600460205260409020805460ff19166001179055611e99565b6001600160a01b0381166000908152600460205260409020805460ff191690555b5080611ea481612bac565b915050611e23565b505050565b6013805461ffff60a01b1916600160a01b8415150260ff60a81b191617600160a81b831515021790556114b985858561206a565b6000611ef030610d7e565b9050600f548110158015611f0e5750600d54600160a01b900460ff16155b8015611f235750600d54600160a81b900460ff165b15610ebd576000611f4d6064611f476019600001548561216190919063ffffffff16565b90611cee565b90506000611f5b8383611dde565b90508015611f6c57611f6c816121e3565b611eac8261228a565b6008546007546000918291611f8a8282611cee565b821015611fa1576008546007549350935050509091565b90939092509050565b60008183611fcb5760405162461bcd60e51b81526004016109819190612762565b506000611cc28486612bdc565b600080600080611fe78561236b565b90506000611ff4866123b8565b9050600061200c826120068986611dde565b90611dde565b979296509094509092505050565b60008080806120298886612161565b905060006120378887612161565b905060006120458888612161565b90506000612057826120068686611dde565b939b939a50919850919650505050505050565b60008060008060008061207c87611d8f565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506120ae9087611dde565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546120dd9086611d30565b6001600160a01b0389166000908152600160205260409020556120ff8161240c565b6121098483612456565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161214e91815260200190565b60405180910390a3505050505050505050565b60008260000361217357506000610a73565b600061217f8385612b42565b90508261218c8583612bdc565b14610b5f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610981565b600d805460ff60a01b1916600160a01b1790556000612203826002611cee565b905060006122118383611dde565b90504761221d8361247a565b60006122294783611dde565b905061223583826125f9565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600d805460ff60a01b19169055505050565b600d805460ff60a01b1916600160a01b1790556122a68161247a565b601a5447906000906122c090606490611f47908590612161565b905060006122e16064611f476019600201548661216190919063ffffffff16565b6011546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505015801561231c573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612357573d6000803e3d6000fd5b5050600d805460ff60a01b19169055505050565b6013546000908190600160a01b900460ff16156123a95750601454601354600160a81b900460ff16156123a9576016546123a6908290611d30565b90505b610b5f6064611f478584612161565b6013546000908190600160a01b900460ff16156123a95750601554601354600160a81b900460ff16156123a9576017546123f3908290611d30565b905060105483106123a9576018546123a6908290611d30565b6000612416611ccb565b905060006124248383612161565b306000908152600160205260409020549091506124419082611d30565b30600090815260016020526040902055505050565b6008546124639083611dde565b6008556009546124739082611d30565b6009555050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124af576124af612b7e565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612522573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125469190612b61565b8160018151811061255957612559612b7e565b6001600160a01b039283166020918202929092010152600c5461258591309162010000900416846116c2565b600c5460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac947906125c3908590600090869030904290600401612bfe565b600060405180830381600087803b1580156125dd57600080fd5b505af11580156125f1573d6000803e3d6000fd5b505050505050565b600c546126179030906201000090046001600160a01b0316846116c2565b600c546001600160a01b03620100009091041663f305d7198230856000806126476000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156126af573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b99190612c6f565b60008083601f8401126126e657600080fd5b50813567ffffffffffffffff8111156126fe57600080fd5b6020830191508360208260051b850101111561271957600080fd5b9250929050565b6000806020838503121561273357600080fd5b823567ffffffffffffffff81111561274a57600080fd5b612756858286016126d4565b90969095509350505050565b600060208083528351808285015260005b8181101561278f57858101830151858201604001528201612773565b818111156127a1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ebd57600080fd5b80356127d7816127b7565b919050565b600080604083850312156127ef57600080fd5b82356127fa816127b7565b946020939093013593505050565b60008060006060848603121561281d57600080fd5b8335612828816127b7565b92506020840135612838816127b7565b929592945050506040919091013590565b60006020828403121561285b57600080fd5b5035919050565b803580151581146127d757600080fd5b6000806040838503121561288557600080fd5b8235915061289560208401612862565b90509250929050565b6000602082840312156128b057600080fd5b8135610b5f816127b7565b6000806000606084860312156128d057600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561291057600080fd5b823567ffffffffffffffff8082111561292857600080fd5b818501915085601f83011261293c57600080fd5b81358181111561294e5761294e6128e7565b8060051b604051601f19603f83011681018181108582111715612973576129736128e7565b60405291825284820192508381018501918883111561299157600080fd5b938501935b828510156129b6576129a7856127cc565b84529385019392850192612996565b98975050505050505050565b6000602082840312156129d457600080fd5b610b5f82612862565b600080604083850312156129f057600080fd5b82356129fb816127b7565b91506020830135612a0b816127b7565b809150509250929050565b600080600080600060a08688031215612a2e57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060408587031215612a6757600080fd5b843567ffffffffffffffff80821115612a7f57600080fd5b612a8b888389016126d4565b90965094506020870135915080821115612aa457600080fd5b50612ab1878288016126d4565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b0657607f821691505b602082108103612b2657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b5c57612b5c612b2c565b500290565b600060208284031215612b7357600080fd5b8151610b5f816127b7565b634e487b7160e01b600052603260045260246000fd5b60008219821115612ba757612ba7612b2c565b500190565b600060018201612bbe57612bbe612b2c565b5060010190565b600082821015612bd757612bd7612b2c565b500390565b600082612bf957634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c4e5784516001600160a01b031683529383019391830191600101612c29565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c8457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bde61b9e197283f0aa0d9882cc981749ca1beeadd8450b7334521656947cf04464736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106102b25760003560e01c8063715018a611610175578063ab0d8b85116100dc578063d3f6a15711610095578063dd62ed3e1161006f578063dd62ed3e14610898578063e7dad4f9146108de578063f2fde38b14610917578063f34eb0b81461093757600080fd5b8063d3f6a15714610838578063dc0aa9cf14610858578063dcda6af31461087857600080fd5b8063ab0d8b85146107a3578063b09f1266146107c3578063b6a99872146107d8578063c49b9a80146107ed578063d12a76881461080d578063d28d88521461082357600080fd5b80638da5cb5b1161012e5780638da5cb5b146106f05780638ea5220f1461070e57806395d89b411461072e5780639b0e2e8614610743578063a457c2d714610763578063a9059cbb1461078357600080fd5b8063715018a61461063b57806371b9189c1461065057806375f0a874146106705780637ca2ea441461069057806385141a77146106b057806385d4787b146106d057600080fd5b8063317d9453116102195780634a74bb02116101d25780634a74bb02146105475780635342acb41461056857806354ed2dc2146105a15780635ee58efc146105c15780636f343052146105fb57806370a082311461061b57600080fd5b8063317d94531461049857806332424aa3146104ad57806339509351146104c75780633bd5d173146104e75780634549b0391461050757806349bd5a5e1461052757600080fd5b806313114a9d1161026b57806313114a9d146103ca5780631694505e146103df57806318160ddd1461041d57806323b872dd146104325780632d83811914610452578063313ce5671461047257600080fd5b8063024022f7146102be578063035ae135146102e05780630492f0551461030057806306fdde0314610329578063095ea7b31461034b5780630ddc09761461037b57600080fd5b366102b957005b600080fd5b3480156102ca57600080fd5b506102de6102d9366004612720565b610957565b005b3480156102ec57600080fd5b506102de6102fb366004612720565b61099a565b34801561030c57600080fd5b50610316600e5481565b6040519081526020015b60405180910390f35b34801561033557600080fd5b5061033e6109d0565b6040516103209190612762565b34801561035757600080fd5b5061036b6103663660046127dc565b610a62565b6040519015158152602001610320565b34801561038757600080fd5b506014546015546016546017546018546103a2949392919085565b604080519586526020860194909452928401919091526060830152608082015260a001610320565b3480156103d657600080fd5b50600954610316565b3480156103eb57600080fd5b50600c54610405906201000090046001600160a01b031681565b6040516001600160a01b039091168152602001610320565b34801561042957600080fd5b50600754610316565b34801561043e57600080fd5b5061036b61044d366004612808565b610a79565b34801561045e57600080fd5b5061031661046d366004612849565b610ae2565b34801561047e57600080fd5b50600c5460ff165b60405160ff9091168152602001610320565b3480156104a457600080fd5b50610316610b66565b3480156104b957600080fd5b50600c546104869060ff1681565b3480156104d357600080fd5b5061036b6104e23660046127dc565b610b76565b3480156104f357600080fd5b506102de610502366004612849565b610bac565b34801561051357600080fd5b50610316610522366004612872565b610c22565b34801561053357600080fd5b50600d54610405906001600160a01b031681565b34801561055357600080fd5b50600d5461036b90600160a81b900460ff1681565b34801561057457600080fd5b5061036b61058336600461289e565b6001600160a01b031660009081526005602052604090205460ff1690565b3480156105ad57600080fd5b506102de6105bc366004612849565b610caf565b3480156105cd57600080fd5b50601954601a54601b546105e092919083565b60408051938452602084019290925290820152606001610320565b34801561060757600080fd5b506102de6106163660046128bb565b610ced565b34801561062757600080fd5b5061031661063636600461289e565b610d7e565b34801561064757600080fd5b506102de610da0565b34801561065c57600080fd5b506102de61066b366004612720565b610e14565b34801561067c57600080fd5b50601154610405906001600160a01b031681565b34801561069c57600080fd5b506102de6106ab366004612849565b610e4a565b3480156106bc57600080fd5b50601354610405906001600160a01b031681565b3480156106dc57600080fd5b506102de6106eb3660046128fd565b610e88565b3480156106fc57600080fd5b506000546001600160a01b0316610405565b34801561071a57600080fd5b50601254610405906001600160a01b031681565b34801561073a57600080fd5b5061033e610ec0565b34801561074f57600080fd5b506102de61075e3660046128fd565b610ecf565b34801561076f57600080fd5b5061036b61077e3660046127dc565b610f04565b34801561078f57600080fd5b5061036b61079e3660046127dc565b610f53565b3480156107af57600080fd5b506102de6107be366004612720565b610f60565b3480156107cf57600080fd5b5061033e610f96565b3480156107e457600080fd5b506102de611024565b3480156107f957600080fd5b506102de6108083660046129c2565b611242565b34801561081957600080fd5b50610316600f5481565b34801561082f57600080fd5b5061033e6112c4565b34801561084457600080fd5b506102de6108533660046129dd565b6112d1565b34801561086457600080fd5b506102de610873366004612a16565b611329565b34801561088457600080fd5b506102de610893366004612a51565b61136d565b3480156108a457600080fd5b506103166108b33660046129dd565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b3480156108ea57600080fd5b5061036b6108f936600461289e565b6001600160a01b031660009081526004602052604090205460ff1690565b34801561092357600080fd5b506102de61093236600461289e565b6114c0565b34801561094357600080fd5b506102de610952366004612849565b6115aa565b6000546001600160a01b0316331461098a5760405162461bcd60e51b815260040161098190612abd565b60405180910390fd5b610996828260006115e8565b5050565b6000546001600160a01b031633146109c45760405162461bcd60e51b815260040161098190612abd565b61099682826001611658565b6060600a80546109df90612af2565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0b90612af2565b8015610a585780601f10610a2d57610100808354040283529160200191610a58565b820191906000526020600020905b815481529060010190602001808311610a3b57829003601f168201915b5050505050905090565b6000610a6f3384846116c2565b5060015b92915050565b6000610a868484846117e6565b610ad88433610ad385604051806060016040528060288152602001612c9e602891396001600160a01b038a1660009081526003602090815260408083203384529091529020549190611c91565b6116c2565b5060019392505050565b6000600854821115610b495760405162461bcd60e51b815260206004820152602a60248201527f416d6f756e74206d757374206265206c657373207468616e20746f74616c207260448201526965666c656374696f6e7360b01b6064820152608401610981565b6000610b53611ccb565b9050610b5f8382611cee565b9392505050565b6000610b7130610d7e565b905090565b3360008181526003602090815260408083206001600160a01b03871684529091528120549091610a6f918590610ad39086611d30565b336000610bb883611d8f565b505050506001600160a01b038416600090815260016020526040902054919250610be491905082611dde565b6001600160a01b038316600090815260016020526040902055600854610c0a9082611dde565b600855600954610c1a9084611d30565b600955505050565b6000600754831115610c765760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c79006044820152606401610981565b81610c95576000610c8684611d8f565b50939550610a73945050505050565b6000610ca084611d8f565b50929550610a73945050505050565b6000546001600160a01b03163314610cd95760405162461bcd60e51b815260040161098190612abd565b610ce781633b9aca00612b42565b60105550565b6000546001600160a01b03163314610d175760405162461bcd60e51b815260040161098190612abd565b610d218383611d30565b606414610d705760405162461bcd60e51b815260206004820152601d60248201527f4665652070657263656e74616765206d75737420657175616c203130300000006044820152606401610981565b601a92909255601b55601955565b6001600160a01b038116600090815260016020526040812054610a7390610ae2565b6000546001600160a01b03163314610dca5760405162461bcd60e51b815260040161098190612abd565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b03163314610e3e5760405162461bcd60e51b815260040161098190612abd565b610996828260016115e8565b6000546001600160a01b03163314610e745760405162461bcd60e51b815260040161098190612abd565b610e8281633b9aca00612b42565b600f5550565b6000546001600160a01b03163314610eb25760405162461bcd60e51b815260040161098190612abd565b610ebd816001611e20565b50565b6060600b80546109df90612af2565b6000546001600160a01b03163314610ef95760405162461bcd60e51b815260040161098190612abd565b610ebd816000611e20565b6000610a6f3384610ad385604051806060016040528060258152602001612cc6602591393360009081526003602090815260408083206001600160a01b038d1684529091529020549190611c91565b6000610a6f3384846117e6565b6000546001600160a01b03163314610f8a5760405162461bcd60e51b815260040161098190612abd565b61099682826000611658565b600b8054610fa390612af2565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcf90612af2565b801561101c5780601f10610ff15761010080835404028352916020019161101c565b820191906000526020600020905b815481529060010190602001808311610fff57829003601f168201915b505050505081565b6000546001600160a01b0316331461104e5760405162461bcd60e51b815260040161098190612abd565b600d546001600160a01b0316156110b25760405162461bcd60e51b815260206004820152602260248201527f556e69737761705632506169722068617320616c7265616479206265656e2073604482015261195d60f21b6064820152608401610981565b600c60029054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611105573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111299190612b61565b6001600160a01b031663c9c6539630600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561118b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111af9190612b61565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156111fc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112209190612b61565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461126c5760405162461bcd60e51b815260040161098190612abd565b600d8054821515600160a81b0260ff60a81b199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc159906112b990831515815260200190565b60405180910390a150565b600a8054610fa390612af2565b6000546001600160a01b031633146112fb5760405162461bcd60e51b815260040161098190612abd565b601180546001600160a01b039384166001600160a01b03199182161790915560128054929093169116179055565b6000546001600160a01b031633146113535760405162461bcd60e51b815260040161098190612abd565b601494909455601592909255601791909155601655601855565b3360009081526005602052604081205460ff166113e25760405162461bcd60e51b815260206004820152602d60248201527f41697264726f702063616e206f6e6c7920626520646f6e65206279206578636c60448201526c756465642066726f6d2066656560981b6064820152608401610981565b8382146114445760405162461bcd60e51b815260206004820152602a60248201527f486f6c6465727320616e6420616d6f756e74206c656e677468206d757374206260448201526965207468652073616d6560b01b6064820152608401610981565b838110156114b9576114a73386868481811061146257611462612b7e565b9050602002016020810190611477919061289e565b85858581811061148957611489612b7e565b90506020020135633b9aca0061149f9190612b42565b600080611eb1565b6114b2600182612b94565b9050611444565b5050505050565b6000546001600160a01b031633146114ea5760405162461bcd60e51b815260040161098190612abd565b6001600160a01b03811661154f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610981565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031633146115d45760405162461bcd60e51b815260040161098190612abd565b6115e281633b9aca00612b42565b600e5550565b60005b8281101561165257600084848381811061160757611607612b7e565b905060200201602081019061161c919061289e565b6001600160a01b03166000908152600560205260409020805460ff1916841515179055508061164a81612bac565b9150506115eb565b50505050565b60005b8281101561165257600084848381811061167757611677612b7e565b905060200201602081019061168c919061289e565b6001600160a01b03166000908152600660205260409020805460ff191684151517905550806116ba81612bac565b91505061165b565b6001600160a01b0383166117245760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610981565b6001600160a01b0382166117855760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610981565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661184a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610981565b6001600160a01b0382166118ac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610981565b6000811161190e5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610981565b600d546001600160a01b03166119665760405162461bcd60e51b815260206004820152601e60248201527f556e697377617056325061697220686173206e6f74206265656e2073657400006044820152606401610981565b6001600160a01b038316600090815260056020526040812054819060ff161580156119aa57506001600160a01b03841660009081526005602052604090205460ff16155b80156119c457506000546001600160a01b03868116911614155b80156119de57506000546001600160a01b03858116911614155b90506119f26000546001600160a01b031690565b6001600160a01b0316856001600160a01b031614158015611a2157506000546001600160a01b03858116911614155b8015611a3b57506013546001600160a01b03858116911614155b15611ae6576001600160a01b03851660009081526004602052604090205460ff16158015611a8257506001600160a01b03841660009081526004602052604090205460ff16155b611ae65760405162461bcd60e51b815260206004820152602f60248201527f626f747320617265206e6f7420616c6c6f77656420746f2073656c6c206f722060448201526e7472616e7366657220746f6b656e7360881b6064820152608401610981565b600d546001600160a01b0386811691161480611b1a57506001600160a01b03851660009081526006602052604090205460ff165b15611b8257600e54831115611b825760405162461bcd60e51b815260206004820152602860248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152673c20b6b7bab73a1760c11b6064820152608401610981565b600d546001600160a01b03868116911614801590611bad5750600d546001600160a01b038581169116145b80611bf457506001600160a01b03851660009081526006602052604090205460ff16158015611bf457506001600160a01b03841660009081526006602052604090205460ff165b15611c055760019150611c05611ee5565b600d546001600160a01b03868116911614801590611c315750600d546001600160a01b03858116911614155b8015611c5657506001600160a01b03851660009081526006602052604090205460ff16155b8015611c7b57506001600160a01b03841660009081526006602052604090205460ff16155b15611c84575060005b6114b98585858486611eb1565b60008184841115611cb55760405162461bcd60e51b81526004016109819190612762565b506000611cc28486612bc5565b95945050505050565b6000806000611cd8611f75565b9092509050611ce78282611cee565b9250505090565b6000610b5f83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611faa565b600080611d3d8385612b94565b905083811015610b5f5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610981565b6000806000806000806000806000611da68a611fd8565b9250925092506000806000611dc48d8686611dbf611ccb565b61201a565b919f909e50909c50959a5093985091965092945050505050565b6000610b5f83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c91565b60005b8251811015611eac576000838281518110611e4057611e40612b7e565b602002602001015190508215611e78576001600160a01b0381166000908152600460205260409020805460ff19166001179055611e99565b6001600160a01b0381166000908152600460205260409020805460ff191690555b5080611ea481612bac565b915050611e23565b505050565b6013805461ffff60a01b1916600160a01b8415150260ff60a81b191617600160a81b831515021790556114b985858561206a565b6000611ef030610d7e565b9050600f548110158015611f0e5750600d54600160a01b900460ff16155b8015611f235750600d54600160a81b900460ff165b15610ebd576000611f4d6064611f476019600001548561216190919063ffffffff16565b90611cee565b90506000611f5b8383611dde565b90508015611f6c57611f6c816121e3565b611eac8261228a565b6008546007546000918291611f8a8282611cee565b821015611fa1576008546007549350935050509091565b90939092509050565b60008183611fcb5760405162461bcd60e51b81526004016109819190612762565b506000611cc28486612bdc565b600080600080611fe78561236b565b90506000611ff4866123b8565b9050600061200c826120068986611dde565b90611dde565b979296509094509092505050565b60008080806120298886612161565b905060006120378887612161565b905060006120458888612161565b90506000612057826120068686611dde565b939b939a50919850919650505050505050565b60008060008060008061207c87611d8f565b6001600160a01b038f16600090815260016020526040902054959b509399509197509550935091506120ae9087611dde565b6001600160a01b03808b1660009081526001602052604080822093909355908a16815220546120dd9086611d30565b6001600160a01b0389166000908152600160205260409020556120ff8161240c565b6121098483612456565b876001600160a01b0316896001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161214e91815260200190565b60405180910390a3505050505050505050565b60008260000361217357506000610a73565b600061217f8385612b42565b90508261218c8583612bdc565b14610b5f5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610981565b600d805460ff60a01b1916600160a01b1790556000612203826002611cee565b905060006122118383611dde565b90504761221d8361247a565b60006122294783611dde565b905061223583826125f9565b60408051858152602081018390529081018490527f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619060600160405180910390a15050600d805460ff60a01b19169055505050565b600d805460ff60a01b1916600160a01b1790556122a68161247a565b601a5447906000906122c090606490611f47908590612161565b905060006122e16064611f476019600201548661216190919063ffffffff16565b6011546040519192506001600160a01b03169083156108fc029084906000818181858888f1935050505015801561231c573d6000803e3d6000fd5b506012546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612357573d6000803e3d6000fd5b5050600d805460ff60a01b19169055505050565b6013546000908190600160a01b900460ff16156123a95750601454601354600160a81b900460ff16156123a9576016546123a6908290611d30565b90505b610b5f6064611f478584612161565b6013546000908190600160a01b900460ff16156123a95750601554601354600160a81b900460ff16156123a9576017546123f3908290611d30565b905060105483106123a9576018546123a6908290611d30565b6000612416611ccb565b905060006124248383612161565b306000908152600160205260409020549091506124419082611d30565b30600090815260016020526040902055505050565b6008546124639083611dde565b6008556009546124739082611d30565b6009555050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106124af576124af612b7e565b60200260200101906001600160a01b031690816001600160a01b031681525050600c60029054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612522573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125469190612b61565b8160018151811061255957612559612b7e565b6001600160a01b039283166020918202929092010152600c5461258591309162010000900416846116c2565b600c5460405163791ac94760e01b8152620100009091046001600160a01b03169063791ac947906125c3908590600090869030904290600401612bfe565b600060405180830381600087803b1580156125dd57600080fd5b505af11580156125f1573d6000803e3d6000fd5b505050505050565b600c546126179030906201000090046001600160a01b0316846116c2565b600c546001600160a01b03620100009091041663f305d7198230856000806126476000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156126af573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114b99190612c6f565b60008083601f8401126126e657600080fd5b50813567ffffffffffffffff8111156126fe57600080fd5b6020830191508360208260051b850101111561271957600080fd5b9250929050565b6000806020838503121561273357600080fd5b823567ffffffffffffffff81111561274a57600080fd5b612756858286016126d4565b90969095509350505050565b600060208083528351808285015260005b8181101561278f57858101830151858201604001528201612773565b818111156127a1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ebd57600080fd5b80356127d7816127b7565b919050565b600080604083850312156127ef57600080fd5b82356127fa816127b7565b946020939093013593505050565b60008060006060848603121561281d57600080fd5b8335612828816127b7565b92506020840135612838816127b7565b929592945050506040919091013590565b60006020828403121561285b57600080fd5b5035919050565b803580151581146127d757600080fd5b6000806040838503121561288557600080fd5b8235915061289560208401612862565b90509250929050565b6000602082840312156128b057600080fd5b8135610b5f816127b7565b6000806000606084860312156128d057600080fd5b505081359360208301359350604090920135919050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561291057600080fd5b823567ffffffffffffffff8082111561292857600080fd5b818501915085601f83011261293c57600080fd5b81358181111561294e5761294e6128e7565b8060051b604051601f19603f83011681018181108582111715612973576129736128e7565b60405291825284820192508381018501918883111561299157600080fd5b938501935b828510156129b6576129a7856127cc565b84529385019392850192612996565b98975050505050505050565b6000602082840312156129d457600080fd5b610b5f82612862565b600080604083850312156129f057600080fd5b82356129fb816127b7565b91506020830135612a0b816127b7565b809150509250929050565b600080600080600060a08688031215612a2e57600080fd5b505083359560208501359550604085013594606081013594506080013592509050565b60008060008060408587031215612a6757600080fd5b843567ffffffffffffffff80821115612a7f57600080fd5b612a8b888389016126d4565b90965094506020870135915080821115612aa457600080fd5b50612ab1878288016126d4565b95989497509550505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612b0657607f821691505b602082108103612b2657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612b5c57612b5c612b2c565b500290565b600060208284031215612b7357600080fd5b8151610b5f816127b7565b634e487b7160e01b600052603260045260246000fd5b60008219821115612ba757612ba7612b2c565b500190565b600060018201612bbe57612bbe612b2c565b5060010190565b600082821015612bd757612bd7612b2c565b500390565b600082612bf957634e487b7160e01b600052601260045260246000fd5b500490565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612c4e5784516001600160a01b031683529383019391830191600101612c29565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612c8457600080fd5b835192506020840151915060408401519050925092509256fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220bde61b9e197283f0aa0d9882cc981749ca1beeadd8450b7334521656947cf04464736f6c634300080d0033
Deployed Bytecode Sourcemap
17546:18781:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23742:118;;;;;;;;;;-1:-1:-1;23742:118:0;;;;;:::i;:::-;;:::i;:::-;;23868:121;;;;;;;;;;-1:-1:-1;23868:121:0;;;;;:::i;:::-;;:::i;18914:52::-;;;;;;;;;;;;;;;;;;;974:25:1;;;962:2;947:18;18914:52:0;;;;;;;;20147:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;20999:161::-;;;;;;;;;;-1:-1:-1;20999:161:0;;;;;:::i;:::-;;:::i;:::-;;;2372:14:1;;2365:22;2347:41;;2335:2;2320:18;20999:161:0;2207:187:1;19756:22:0;;;;;;;;;;-1:-1:-1;19756:22:0;;;;;;;;;;;;;;;;;;;;;;2658:25:1;;;2714:2;2699:18;;2692:34;;;;2742:18;;;2735:34;;;;2800:2;2785:18;;2778:34;2843:3;2828:19;;2821:35;2645:3;2630:19;19756:22:0;2399:463:1;21992:87:0;;;;;;;;;;-1:-1:-1;22061:10:0;;21992:87;;18678:106;;;;;;;;;;-1:-1:-1;18678:106:0;;;;;;;-1:-1:-1;;;;;18678:106:0;;;;;;-1:-1:-1;;;;;3057:32:1;;;3039:51;;3027:2;3012:18;18678:106:0;2867:229:1;20424:95:0;;;;;;;;;;-1:-1:-1;20504:7:0;;20424:95;;21168:313;;;;;;;;;;-1:-1:-1;21168:313:0;;;;;:::i;:::-;;:::i;23354:253::-;;;;;;;;;;-1:-1:-1;23354:253:0;;;;;:::i;:::-;;:::i;20333:83::-;;;;;;;;;;-1:-1:-1;20399:9:0;;;;20333:83;;;3919:4:1;3907:17;;;3889:36;;3877:2;3862:18;20333:83:0;3747:184:1;27152:115:0;;;;;;;;;;;;;:::i;18607:26::-;;;;;;;;;;-1:-1:-1;18607:26:0;;;;;;;;21489:218;;;;;;;;;;-1:-1:-1;21489:218:0;;;;;:::i;:::-;;:::i;22613:289::-;;;;;;;;;;-1:-1:-1;22613:289:0;;;;;:::i;:::-;;:::i;22910:436::-;;;;;;;;;;-1:-1:-1;22910:436:0;;;;;:::i;:::-;;:::i;18791:41::-;;;;;;;;;;-1:-1:-1;18791:41:0;;;;-1:-1:-1;;;;;18791:41:0;;;18867:40;;;;;;;;;;-1:-1:-1;18867:40:0;;;;-1:-1:-1;;;18867:40:0;;;;;;30500:123;;;;;;;;;;-1:-1:-1;30500:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;30588:27:0;30564:4;30588:27;;;:18;:27;;;;;;;;;30500:123;24883:153;;;;;;;;;;-1:-1:-1;24883:153:0;;;;;:::i;:::-;;:::i;19785:32::-;;;;;;;;;;-1:-1:-1;19785:32:0;;;;;;;;;;;;;;;;5016:25:1;;;5072:2;5057:18;;5050:34;;;;5100:18;;;5093:34;5004:2;4989:18;19785:32:0;4814:319:1;25609:426:0;;;;;;;;;;-1:-1:-1;25609:426:0;;;;;:::i;:::-;;:::i;20527:138::-;;;;;;;;;;-1:-1:-1;20527:138:0;;;;;:::i;:::-;;:::i;16228:148::-;;;;;;;;;;;;;:::i;23615:119::-;;;;;;;;;;-1:-1:-1;23615:119:0;;;;;:::i;:::-;;:::i;19117:75::-;;;;;;;;;;-1:-1:-1;19117:75:0;;;;-1:-1:-1;;;;;19117:75:0;;;26043:176;;;;;;;;;;-1:-1:-1;26043:176:0;;;;;:::i;:::-;;:::i;19275:70::-;;;;;;;;;;-1:-1:-1;19275:70:0;;;;-1:-1:-1;;;;;19275:70:0;;;26523:128;;;;;;;;;;-1:-1:-1;26523:128:0;;;;;:::i;:::-;;:::i;15592:79::-;;;;;;;;;;-1:-1:-1;15630:7:0;15657:6;-1:-1:-1;;;;;15657:6:0;15592:79;;19199:69;;;;;;;;;;-1:-1:-1;19199:69:0;;;;-1:-1:-1;;;;;19199:69:0;;;20238:87;;;;;;;;;;;;;:::i;26659:131::-;;;;;;;;;;-1:-1:-1;26659:131:0;;;;;:::i;:::-;;:::i;21715:269::-;;;;;;;;;;-1:-1:-1;21715:269:0;;;;;:::i;:::-;;:::i;20673:167::-;;;;;;;;;;-1:-1:-1;20673:167:0;;;;;:::i;:::-;;:::i;23997:125::-;;;;;;;;;;-1:-1:-1;23997:125:0;;;;;:::i;:::-;;:::i;18568:32::-;;;;;;;;;;;;;:::i;24130:256::-;;;;;;;;;;;;;:::i;27275:171::-;;;;;;;;;;-1:-1:-1;27275:171:0;;;;;:::i;:::-;;:::i;18973:68::-;;;;;;;;;;;;;;;;18527:34;;;;;;;;;;;;;:::i;26227:171::-;;;;;;;;;;-1:-1:-1;26227:171:0;;;;;:::i;:::-;;:::i;25175:426::-;;;;;;;;;;-1:-1:-1;25175:426:0;;;;;:::i;:::-;;:::i;22087:518::-;;;;;;;;;;-1:-1:-1;22087:518:0;;;;;:::i;:::-;;:::i;20848:143::-;;;;;;;;;;-1:-1:-1;20848:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;20956:18:0;;;20929:7;20956:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20848:143;26406:109;;;;;;;;;;-1:-1:-1;26406:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;26491:16:0;26467:4;26491:16;;;:10;:16;;;;;;;;;26406:109;16531:244;;;;;;;;;;-1:-1:-1;16531:244:0;;;;;:::i;:::-;;:::i;25044:123::-;;;;;;;;;;-1:-1:-1;25044:123:0;;;;;:::i;:::-;;:::i;23742:118::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;;;;;;;;;23822:30:::1;23835:9;;23846:5;23822:12;:30::i;:::-;23742:118:::0;;:::o;23868:121::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;23947:34:::1;23965:9;;23976:4;23947:17;:34::i;20147:83::-:0;20184:13;20217:5;20210:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20147:83;:::o;20999:161::-;21074:4;21091:39;8164:10;21114:7;21123:6;21091:8;:39::i;:::-;-1:-1:-1;21148:4:0;20999:161;;;;;:::o;21168:313::-;21266:4;21283:36;21293:6;21301:9;21312:6;21283:9;:36::i;:::-;21330:121;21339:6;8164:10;21361:89;21399:6;21361:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21361:19:0;;;;;;:11;:19;;;;;;;;8164:10;21361:33;;;;;;;;;;:37;:89::i;:::-;21330:8;:121::i;:::-;-1:-1:-1;21469:4:0;21168:313;;;;;:::o;23354:253::-;23420:7;23459;;23448;:18;;23440:73;;;;-1:-1:-1;;;23440:73:0;;9480:2:1;23440:73:0;;;9462:21:1;9519:2;9499:18;;;9492:30;9558:34;9538:18;;;9531:62;-1:-1:-1;;;9609:18:1;;;9602:40;9659:19;;23440:73:0;9278:406:1;23440:73:0;23524:19;23547:10;:8;:10::i;:::-;23524:33;-1:-1:-1;23575:24:0;:7;23524:33;23575:11;:24::i;:::-;23568:31;23354:253;-1:-1:-1;;;23354:253:0:o;27152:115::-;27208:7;27235:24;27253:4;27235:9;:24::i;:::-;27228:31;;27152:115;:::o;21489:218::-;8164:10;21577:4;21626:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21626:34:0;;;;;;;;;;21577:4;;21594:83;;21617:7;;21626:50;;21665:10;21626:38;:50::i;22613:289::-;8164:10;22665:14;22730:19;22741:7;22730:10;:19::i;:::-;-1:-1:-1;;;;;;;;;22778:15:0;;;;;;:7;:15;;;;;;22705:44;;-1:-1:-1;22778:28:0;;:15;-1:-1:-1;22705:44:0;22778:19;:28::i;:::-;-1:-1:-1;;;;;22760:15:0;;;;;;:7;:15;;;;;:46;22827:7;;:20;;22839:7;22827:11;:20::i;:::-;22817:7;:30;22871:10;;:23;;22886:7;22871:14;:23::i;:::-;22858:10;:36;-1:-1:-1;;;22613:289:0:o;22910:436::-;23000:7;23039;;23028;:18;;23020:62;;;;-1:-1:-1;;;23020:62:0;;9891:2:1;23020:62:0;;;9873:21:1;9930:2;9910:18;;;9903:30;9969:33;9949:18;;;9942:61;10020:18;;23020:62:0;9689:355:1;23020:62:0;23098:17;23093:246;;23133:15;23157:19;23168:7;23157:10;:19::i;:::-;-1:-1:-1;23132:44:0;;-1:-1:-1;23191:14:0;;-1:-1:-1;;;;;23191:14:0;23093:246;23240:23;23271:19;23282:7;23271:10;:19::i;:::-;-1:-1:-1;23238:52:0;;-1:-1:-1;23305:22:0;;-1:-1:-1;;;;;23305:22:0;24883:153;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;25000:28:::1;:20:::0;25023:5:::1;25000:28;:::i;:::-;24976:21;:52:::0;-1:-1:-1;24883:153:0:o;25609:426::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;25755:44:::1;:22:::0;25782:16;25755:26:::1;:44::i;:::-;25803:3;25755:51;25747:93;;;::::0;-1:-1:-1;;;25747:93:0;;10556:2:1;25747:93:0::1;::::0;::::1;10538:21:1::0;10595:2;10575:18;;;10568:30;10634:31;10614:18;;;10607:59;10683:18;;25747:93:0::1;10354:353:1::0;25747:93:0::1;25851:35:::0;:60;;;;25922:29;:48;25851:12:::1;25981:46:::0;25609:426::o;20527:138::-;-1:-1:-1;;;;;20640:16:0;;20593:7;20640:16;;;:7;:16;;;;;;20620:37;;:19;:37::i;16228:148::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;16335:1:::1;16319:6:::0;;16298:40:::1;::::0;-1:-1:-1;;;;;16319:6:0;;::::1;::::0;16298:40:::1;::::0;16335:1;;16298:40:::1;16366:1;16349:19:::0;;-1:-1:-1;;;;;;16349:19:0::1;::::0;;16228:148::o;23615:119::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;23697:29:::1;23710:9;;23721:4;23697:12;:29::i;26043:176::-:0;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;26173:38:::1;:30:::0;26206:5:::1;26173:38;:::i;:::-;26141:29;:70:::0;-1:-1:-1;26043:176:0:o;26523:128::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;26607:36:::1;26627:9;26638:4;26607:19;:36::i;:::-;26523:128:::0;:::o;20238:87::-;20277:13;20310:7;20303:14;;;;;:::i;26659:131::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;26745:37:::1;26765:9;26776:5;26745:19;:37::i;21715:269::-:0;21808:4;21825:129;8164:10;21848:7;21857:96;21896:15;21857:96;;;;;;;;;;;;;;;;;8164:10;21857:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21857:34:0;;;;;;;;;;;;:38;:96::i;20673:167::-;20751:4;20768:42;8164:10;20792:9;20803:6;20768:9;:42::i;23997:125::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;24079:35:::1;24097:9;;24108:5;24079:17;:35::i;18568:32::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24130:256::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;24192:13:::1;::::0;-1:-1:-1;;;;;24192:13:0::1;:27:::0;24184:73:::1;;;::::0;-1:-1:-1;;;24184:73:0;;10914:2:1;24184:73:0::1;::::0;::::1;10896:21:1::0;10953:2;10933:18;;;10926:30;10992:34;10972:18;;;10965:62;-1:-1:-1;;;11043:18:1;;;11036:32;11085:19;;24184:73:0::1;10712:398:1::0;24184:73:0::1;24302:15;;;;;;;;;-1:-1:-1::0;;;;;24302:15:0::1;-1:-1:-1::0;;;;;24302:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;24284:55:0::1;;24348:4;24355:15;;;;;;;;;-1:-1:-1::0;;;;;24355:15:0::1;-1:-1:-1::0;;;;;24355:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24284:94;::::0;-1:-1:-1;;;;;;24284:94:0::1;::::0;;;;;;-1:-1:-1;;;;;11601:15:1;;;24284:94:0::1;::::0;::::1;11583:34:1::0;11653:15;;11633:18;;;11626:43;11518:18;;24284:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24268:13;:110:::0;;-1:-1:-1;;;;;;24268:110:0::1;-1:-1:-1::0;;;;;24268:110:0;;;::::1;::::0;;;::::1;::::0;;24130:256::o;27275:171::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;27352:21:::1;:32:::0;;;::::1;;-1:-1:-1::0;;;27352:32:0::1;-1:-1:-1::0;;;;27352:32:0;;::::1;;::::0;;27400:38:::1;::::0;::::1;::::0;::::1;::::0;27376:8;2372:14:1;2365:22;2347:41;;2335:2;2320:18;;2207:187;27400:38:0::1;;;;;;;;27275:171:::0;:::o;18527:34::-;;;;;;;:::i;26227:171::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;26323:15:::1;:34:::0;;-1:-1:-1;;;;;26323:34:0;;::::1;-1:-1:-1::0;;;;;;26323:34:0;;::::1;;::::0;;;26368:9:::1;:22:::0;;;;;::::1;::::0;::::1;;::::0;;26227:171::o;25175:426::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;25348:7:::1;:37:::0;;;;25396:20;:35;;;;25442:24;:43;;;;25496:25;:45;25552:23;:41;25175:426::o;22087:518::-;8164:10;22184:16;22223:32;;;:18;:32;;;;;;;;22215:90;;;;-1:-1:-1;;;22215:90:0;;11882:2:1;22215:90:0;;;11864:21:1;11921:2;11901:18;;;11894:30;11960:34;11940:18;;;11933:62;-1:-1:-1;;;12011:18:1;;;12004:43;12064:19;;22215:90:0;11680:409:1;22215:90:0;22324:35;;;22316:90;;;;-1:-1:-1;;;22316:90:0;;12296:2:1;22316:90:0;;;12278:21:1;12335:2;12315:18;;;12308:30;12374:34;12354:18;;;12347:62;-1:-1:-1;;;12425:18:1;;;12418:40;12475:19;;22316:90:0;12094:406:1;22316:90:0;22423:28;;;22417:181;;;22467:91;8164:10;22496;;22507:8;22496:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;22518:7;;22526:8;22518:17;;;;;;;:::i;:::-;;;;;;;22538:5;22518:25;;;;:::i;:::-;22545:5;22552;22467:14;:91::i;:::-;22573:13;22585:1;22573:13;;:::i;:::-;;;22417:181;;;22173:432;22087:518;;;;:::o;16531:244::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16620:22:0;::::1;16612:73;;;::::0;-1:-1:-1;;;16612:73:0;;12972:2:1;16612:73:0::1;::::0;::::1;12954:21:1::0;13011:2;12991:18;;;12984:30;13050:34;13030:18;;;13023:62;-1:-1:-1;;;13101:18:1;;;13094:36;13147:19;;16612:73:0::1;12770:402:1::0;16612:73:0::1;16722:6;::::0;;16701:38:::1;::::0;-1:-1:-1;;;;;16701:38:0;;::::1;::::0;16722:6;::::1;::::0;16701:38:::1;::::0;::::1;16750:6;:17:::0;;-1:-1:-1;;;;;;16750:17:0::1;-1:-1:-1::0;;;;;16750:17:0;;;::::1;::::0;;;::::1;::::0;;16531:244::o;25044:123::-;15804:6;;-1:-1:-1;;;;;15804:6:0;8164:10;15804:22;15796:67;;;;-1:-1:-1;;;15796:67:0;;;;;;;:::i;:::-;25139:20:::1;:12:::0;25154:5:::1;25139:20;:::i;:::-;25123:13;:36:::0;-1:-1:-1;25044:123:0:o;24639:236::-;24726:9;24721:147;24741:20;;;24721:147;;;24783:12;24798:9;;24808:1;24798:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24825:24:0;;;;;:18;:24;;;;;:31;;-1:-1:-1;;24825:31:0;;;;;;;-1:-1:-1;24763:3:0;;;;:::i;:::-;;;;24721:147;;;;24639:236;;;:::o;24392:239::-;24484:9;24479:145;24499:20;;;24479:145;;;24541:12;24556:9;;24566:1;24556:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;24583:22:0;;;;;:16;:22;;;;;:29;;-1:-1:-1;;24583:29:0;;;;;;;-1:-1:-1;24521:3:0;;;;:::i;:::-;;;;24479:145;;30631:337;-1:-1:-1;;;;;30724:19:0;;30716:68;;;;-1:-1:-1;;;30716:68:0;;13519:2:1;30716:68:0;;;13501:21:1;13558:2;13538:18;;;13531:30;13597:34;13577:18;;;13570:62;-1:-1:-1;;;13648:18:1;;;13641:34;13692:19;;30716:68:0;13317:400:1;30716:68:0;-1:-1:-1;;;;;30803:21:0;;30795:68;;;;-1:-1:-1;;;30795:68:0;;13924:2:1;30795:68:0;;;13906:21:1;13963:2;13943:18;;;13936:30;14002:34;13982:18;;;13975:62;-1:-1:-1;;;14053:18:1;;;14046:32;14095:19;;30795:68:0;13722:398:1;30795:68:0;-1:-1:-1;;;;;30876:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;30928:32;;974:25:1;;;30928:32:0;;947:18:1;30928:32:0;;;;;;;30631:337;;;:::o;30976:1442::-;-1:-1:-1;;;;;31064:18:0;;31056:68;;;;-1:-1:-1;;;31056:68:0;;14327:2:1;31056:68:0;;;14309:21:1;14366:2;14346:18;;;14339:30;14405:34;14385:18;;;14378:62;-1:-1:-1;;;14456:18:1;;;14449:35;14501:19;;31056:68:0;14125:401:1;31056:68:0;-1:-1:-1;;;;;31143:16:0;;31135:64;;;;-1:-1:-1;;;31135:64:0;;14733:2:1;31135:64:0;;;14715:21:1;14772:2;14752:18;;;14745:30;14811:34;14791:18;;;14784:62;-1:-1:-1;;;14862:18:1;;;14855:33;14905:19;;31135:64:0;14531:399:1;31135:64:0;31227:1;31218:6;:10;31210:64;;;;-1:-1:-1;;;31210:64:0;;15137:2:1;31210:64:0;;;15119:21:1;15176:2;15156:18;;;15149:30;15215:34;15195:18;;;15188:62;-1:-1:-1;;;15266:18:1;;;15259:39;15315:19;;31210:64:0;14935:405:1;31210:64:0;31293:13;;-1:-1:-1;;;;;31293:13:0;31285:69;;;;-1:-1:-1;;;31285:69:0;;15547:2:1;31285:69:0;;;15529:21:1;15586:2;15566:18;;;15559:30;15625:32;15605:18;;;15598:60;15675:18;;31285:69:0;15345:354:1;31285:69:0;-1:-1:-1;;;;;31412:24:0;;31365:11;31412:24;;;:18;:24;;;;;;31365:11;;31412:24;;31411:25;:52;;;;-1:-1:-1;;;;;;31441:22:0;;;;;;:18;:22;;;;;;;;31440:23;31411:52;:71;;;;-1:-1:-1;15630:7:0;15657:6;-1:-1:-1;;;;;31467:15:0;;;15657:6;;31467:15;;31411:71;:88;;;;-1:-1:-1;15630:7:0;15657:6;-1:-1:-1;;;;;31486:13:0;;;15657:6;;31486:13;;31411:88;31395:104;;31610:7;15630;15657:6;-1:-1:-1;;;;;15657:6:0;;15592:79;31610:7;-1:-1:-1;;;;;31602:15:0;:4;-1:-1:-1;;;;;31602:15:0;;;:32;;;;-1:-1:-1;15630:7:0;15657:6;-1:-1:-1;;;;;31621:13:0;;;15657:6;;31621:13;;31602:32;:52;;;;-1:-1:-1;31644:10:0;;-1:-1:-1;;;;;31638:16:0;;;31644:10;;31638:16;;31602:52;31599:180;;;-1:-1:-1;;;;;31680:16:0;;;;;;:10;:16;;;;;;;;31679:17;:36;;;;-1:-1:-1;;;;;;31701:14:0;;;;;;:10;:14;;;;;;;;31700:15;31679:36;31671:96;;;;-1:-1:-1;;;31671:96:0;;15906:2:1;31671:96:0;;;15888:21:1;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;-1:-1:-1;;;16035:18:1;;;16028:45;16090:19;;31671:96:0;15704:411:1;31671:96:0;31800:13;;-1:-1:-1;;;;;31792:21:0;;;31800:13;;31792:21;;:47;;-1:-1:-1;;;;;;31817:22:0;;;;;;:16;:22;;;;;;;;31792:47;31789:155;;;31874:13;;31864:6;:23;;31856:76;;;;-1:-1:-1;;;31856:76:0;;16322:2:1;31856:76:0;;;16304:21:1;16361:2;16341:18;;;16334:30;16400:34;16380:18;;;16373:62;-1:-1:-1;;;16451:18:1;;;16444:38;16499:19;;31856:76:0;16120:404:1;31856:76:0;31965:13;;-1:-1:-1;;;;;31957:21:0;;;31965:13;;31957:21;;;;:44;;-1:-1:-1;31988:13:0;;-1:-1:-1;;;;;31982:19:0;;;31988:13;;31982:19;31957:44;:97;;;-1:-1:-1;;;;;;32007:22:0;;;;;;:16;:22;;;;;;;;32006:23;:47;;;;-1:-1:-1;;;;;;32033:20:0;;;;;;:16;:20;;;;;;;;32006:47;31954:242;;;32150:4;32141:13;;32169:15;:13;:15::i;:::-;32217:13;;-1:-1:-1;;;;;32209:21:0;;;32217:13;;32209:21;;;;:44;;-1:-1:-1;32240:13:0;;-1:-1:-1;;;;;32234:19:0;;;32240:13;;32234:19;;32209:44;:71;;;;-1:-1:-1;;;;;;32258:22:0;;;;;;:16;:22;;;;;;;;32257:23;32209:71;:96;;;;-1:-1:-1;;;;;;32285:20:0;;;;;;:16;:20;;;;;;;;32284:21;32209:96;32206:144;;;-1:-1:-1;32333:5:0;32206:144;32360:50;32375:4;32381:2;32385:6;32393:8;32403:6;32360:14;:50::i;4415:192::-;4501:7;4537:12;4529:6;;;;4521:29;;;;-1:-1:-1;;;4521:29:0;;;;;;;;:::i;:::-;-1:-1:-1;4561:9:0;4573:5;4577:1;4573;:5;:::i;:::-;4561:17;4415:192;-1:-1:-1;;;;;4415:192:0:o;28848:163::-;28889:7;28910:15;28927;28946:19;:17;:19::i;:::-;28909:56;;-1:-1:-1;28909:56:0;-1:-1:-1;28983:20:0;28909:56;;28983:11;:20::i;:::-;28976:27;;;;28848:163;:::o;5813:132::-;5871:7;5898:39;5902:1;5905;5898:39;;;;;;;;;;;;;;;;;:3;:39::i;3512:181::-;3570:7;;3602:5;3606:1;3602;:5;:::i;:::-;3590:17;;3631:1;3626;:6;;3618:46;;;;-1:-1:-1;;;3618:46:0;;16861:2:1;3618:46:0;;;16843:21:1;16900:2;16880:18;;;16873:30;16939:29;16919:18;;;16912:57;16986:18;;3618:46:0;16659:351:1;27646:419:0;27705:7;27714;27723;27732;27741;27750;27771:23;27796:12;27810:18;27832:20;27844:7;27832:11;:20::i;:::-;27770:82;;;;;;27864:15;27881:23;27906:12;27922:50;27934:7;27943:4;27949:10;27961;:8;:10::i;:::-;27922:11;:50::i;:::-;27863:109;;;;-1:-1:-1;27863:109:0;;-1:-1:-1;28023:15:0;;-1:-1:-1;28040:4:0;;-1:-1:-1;28046:10:0;;-1:-1:-1;27646:419:0;;-1:-1:-1;;;;;27646:419:0:o;3976:136::-;4034:7;4061:43;4065:1;4068;4061:43;;;;;;;;;;;;;;;;;:3;:43::i;26798:346::-;26893:9;26888:249;26912:9;:16;26908:1;:20;26888:249;;;26950:12;26965:9;26975:1;26965:12;;;;;;;;:::i;:::-;;;;;;;26950:27;;26995:7;26992:134;;;-1:-1:-1;;;;;27023:16:0;;;;;;:10;:16;;;;;:23;;-1:-1:-1;;27023:23:0;27042:4;27023:23;;;26992:134;;;-1:-1:-1;;;;;27094:16:0;;;;;;:10;:16;;;;;27087:23;;-1:-1:-1;;27087:23:0;;;26992:134;-1:-1:-1;26930:3:0;;;;:::i;:::-;;;;26888:249;;;;26798:346;;:::o;35579:235::-;35701:10;:21;;-1:-1:-1;;;;35733:18:0;-1:-1:-1;;;35701:21:0;;;;-1:-1:-1;;;;35733:18:0;;-1:-1:-1;;;35733:18:0;;;;;;;35762:44;35780:6;35788:9;35799:6;35762:17;:44::i;32426:992::-;32470:28;32501:24;32519:4;32501:9;:24::i;:::-;32470:55;;32564:29;;32540:20;:53;;:74;;;;-1:-1:-1;32598:16:0;;-1:-1:-1;;;32598:16:0;;;;32597:17;32540:74;:99;;;;-1:-1:-1;32618:21:0;;-1:-1:-1;;;32618:21:0;;;;32540:99;32536:875;;;32822:28;32853:63;32912:3;32853:54;32878:12;:28;;;32853:20;:24;;:54;;;;:::i;:::-;:58;;:63::i;:::-;32822:94;-1:-1:-1;32931:27:0;32961:46;:20;32822:94;32961:24;:46::i;:::-;32931:76;-1:-1:-1;33158:23:0;;33155:131;;33235:35;33250:19;33235:14;:35::i;:::-;33361:38;33378:20;33361:16;:38::i;29019:256::-;29116:7;;29152;;29069;;;;29184:20;29116:7;29152;29184:11;:20::i;:::-;29174:7;:30;29170:61;;;29214:7;;29223;;29206:25;;;;;;29019:256;;:::o;29170:61::-;29250:7;;29259;;-1:-1:-1;29019:256:0;-1:-1:-1;29019:256:0:o;6441:278::-;6527:7;6562:12;6555:5;6547:28;;;;-1:-1:-1;;;6547:28:0;;;;;;;;:::i;:::-;-1:-1:-1;6586:9:0;6598:5;6602:1;6598;:5;:::i;28073:330::-;28133:7;28142;28151;28171:12;28186:24;28202:7;28186:15;:24::i;:::-;28171:39;;28221:18;28242:30;28264:7;28242:21;:30::i;:::-;28221:51;-1:-1:-1;28283:23:0;28309:33;28221:51;28309:17;:7;28321:4;28309:11;:17::i;:::-;:21;;:33::i;:::-;28283:59;28378:4;;-1:-1:-1;28384:10:0;;-1:-1:-1;28073:330:0;;-1:-1:-1;;;28073:330:0:o;28411:429::-;28526:7;;;;28582:24;:7;28594:11;28582;:24::i;:::-;28564:42;-1:-1:-1;28617:12:0;28632:21;:4;28641:11;28632:8;:21::i;:::-;28617:36;-1:-1:-1;28664:18:0;28685:27;:10;28700:11;28685:14;:27::i;:::-;28664:48;-1:-1:-1;28723:23:0;28749:33;28664:48;28749:17;:7;28761:4;28749:11;:17::i;:33::-;28801:7;;;;-1:-1:-1;28827:4:0;;-1:-1:-1;28411:429:0;;-1:-1:-1;;;;;;;28411:429:0:o;35822:502::-;35921:15;35938:23;35963:12;35977:23;36002:12;36016:18;36038:19;36049:7;36038:10;:19::i;:::-;-1:-1:-1;;;;;36086:15:0;;;;;;:7;:15;;;;;;35920:137;;-1:-1:-1;35920:137:0;;-1:-1:-1;35920:137:0;;-1:-1:-1;35920:137:0;-1:-1:-1;35920:137:0;-1:-1:-1;35920:137:0;-1:-1:-1;36086:28:0;;35920:137;36086:19;:28::i;:::-;-1:-1:-1;;;;;36068:15:0;;;;;;;:7;:15;;;;;;:46;;;;36146:18;;;;;;;:39;;36169:15;36146:22;:39::i;:::-;-1:-1:-1;;;;;36125:18:0;;;;;;:7;:18;;;;;:60;36196:26;36211:10;36196:14;:26::i;:::-;36233:23;36245:4;36251;36233:11;:23::i;:::-;36289:9;-1:-1:-1;;;;;36272:44:0;36281:6;-1:-1:-1;;;;;36272:44:0;;36300:15;36272:44;;;;974:25:1;;962:2;947:18;;828:177;36272:44:0;;;;;;;;35909:415;;;;;;35822:502;;;:::o;4866:471::-;4924:7;5169:1;5174;5169:6;5165:47;;-1:-1:-1;5199:1:0;5192:8;;5165:47;5224:9;5236:5;5240:1;5236;:5;:::i;:::-;5224:17;-1:-1:-1;5269:1:0;5260:5;5264:1;5224:17;5260:5;:::i;:::-;:10;5252:56;;;;-1:-1:-1;;;5252:56:0;;17439:2:1;5252:56:0;;;17421:21:1;17478:2;17458:18;;;17451:30;17517:34;17497:18;;;17490:62;-1:-1:-1;;;17568:18:1;;;17561:31;17609:19;;5252:56:0;17237:397:1;33426:464:0;17890:16;:23;;-1:-1:-1;;;;17890:23:0;-1:-1:-1;;;17890:23:0;;;;33526:27:::1;:20:::0;33551:1:::1;33526:24;:27::i;:::-;33511:42:::0;-1:-1:-1;33564:17:0::1;33584:30;:20:::0;33511:42;33584:24:::1;:30::i;:::-;33564:50:::0;-1:-1:-1;33650:21:0::1;33682:22;33699:4:::0;33682:16:::1;:22::i;:::-;33715:18;33736:41;:21;33762:14:::0;33736:25:::1;:41::i;:::-;33715:62;;33788:35;33801:9;33812:10;33788:12;:35::i;:::-;33839:43;::::0;;5016:25:1;;;5072:2;5057:18;;5050:34;;;5100:18;;;5093:34;;;33839:43:0::1;::::0;5004:2:1;4989:18;33839:43:0::1;;;;;;;-1:-1:-1::0;;17936:16:0;:24;;-1:-1:-1;;;;17936:24:0;;;-1:-1:-1;;;33426:464:0:o;34417:488::-;17890:16;:23;;-1:-1:-1;;;;17890:23:0;-1:-1:-1;;;17890:23:0;;;34504:38:::1;34521:20:::0;34504:16:::1;:38::i;:::-;34654:35:::0;;34578:21:::1;::::0;34553:22:::1;::::0;34635:64:::1;::::0;34695:3:::1;::::0;34635:55:::1;::::0;34578:21;;34635:18:::1;:55::i;:64::-;34610:89;;34710:16;34729:58;34783:3;34729:49;34748:12;:29;;;34729:14;:18;;:49;;;;:::i;:58::-;34806:15;::::0;34798:49:::1;::::0;34710:77;;-1:-1:-1;;;;;;34806:15:0::1;::::0;34798:49;::::1;;;::::0;34832:14;;34806:15:::1;34798:49:::0;34806:15;34798:49;34832:14;34806:15;34798:49;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;34866:9:0::1;::::0;34858:37:::1;::::0;-1:-1:-1;;;;;34866:9:0;;::::1;::::0;34858:37;::::1;;;::::0;34886:8;;34866:9:::1;34858:37:::0;34866:9;34858:37;34886:8;34866:9;34858:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;17936:16:0;:24;;-1:-1:-1;;;;17936:24:0;;;-1:-1:-1;;;34417:488:0:o;29528:384::-;29651:10;;29592:7;;;;-1:-1:-1;;;29651:10:0;;;;29648:202;;;-1:-1:-1;29694:7:0;:21;29733:9;;-1:-1:-1;;;29733:9:0;;;;29730:109;;;29797:25;;29779:44;;:13;;:17;:44::i;:::-;29763:60;;29730:109;29867:37;29898:5;29867:26;:7;29879:13;29867:11;:26::i;29920:572::-;30053:10;;29990:7;;;;-1:-1:-1;;;30053:10:0;;;;30050:376;;;-1:-1:-1;30100:20:0;;30138:9;;-1:-1:-1;;;30138:9:0;;;;30135:280;;;30210:24;;30188:47;;:17;;:21;:47::i;:::-;30168:67;;30268:21;;30257:7;:32;30254:146;;30356:23;;30334:46;;:17;;:21;:46::i;29283:237::-;29346:19;29369:10;:8;:10::i;:::-;29346:33;-1:-1:-1;29390:18:0;29411:27;:10;29346:33;29411:14;:27::i;:::-;29490:4;29474:22;;;;:7;:22;;;;;;29390:48;;-1:-1:-1;29474:38:0;;29390:48;29474:26;:38::i;:::-;29465:4;29449:22;;;;:7;:22;;;;;:63;-1:-1:-1;;;29283:237:0:o;27491:147::-;27569:7;;:17;;27581:4;27569:11;:17::i;:::-;27559:7;:27;27610:10;;:20;;27625:4;27610:14;:20::i;:::-;27597:10;:33;-1:-1:-1;;27491:147:0:o;34913:585::-;35063:16;;;35077:1;35063:16;;;;;;;;35039:21;;35063:16;;;;;;;;;;-1:-1:-1;35063:16:0;35039:40;;35108:4;35090;35095:1;35090:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35090:23:0;;;-1:-1:-1;;;;;35090:23:0;;;;;35134:15;;;;;;;;;-1:-1:-1;;;;;35134:15:0;-1:-1:-1;;;;;35134:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35124:4;35129:1;35124:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35124:32:0;;;:7;;;;;;;;;:32;35199:15;;35167:62;;35184:4;;35199:15;;;;35217:11;35167:8;:62::i;:::-;35266:15;;:224;;-1:-1:-1;;;35266:224:0;;:15;;;;-1:-1:-1;;;;;35266:15:0;;:66;;:224;;35347:11;;35373:1;;35417:4;;35444;;35464:15;;35266:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34968:530;34913:585;:::o;33898:513::-;34078:15;;34046:62;;34063:4;;34078:15;;;-1:-1:-1;;;;;34078:15:0;34096:11;34046:8;:62::i;:::-;34151:15;;-1:-1:-1;;;;;34151:15:0;;;;;:31;34190:9;34223:4;34243:11;34269:1;;34355:7;15630;15657:6;-1:-1:-1;;;;;15657:6:0;;15592:79;34355:7;34151:252;;;;;;-1:-1:-1;;;;;;34151:252:0;;;-1:-1:-1;;;;;18983:15:1;;;34151:252:0;;;18965:34:1;19015:18;;;19008:34;;;;19058:18;;;19051:34;;;;19101:18;;;19094:34;19165:15;;;19144:19;;;19137:44;34377:15:0;19197:19:1;;;19190:35;18899:19;;34151:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:367:1:-;77:8;87:6;141:3;134:4;126:6;122:17;118:27;108:55;;159:1;156;149:12;108:55;-1:-1:-1;182:20:1;;225:18;214:30;;211:50;;;257:1;254;247:12;211:50;294:4;286:6;282:17;270:29;;354:3;347:4;337:6;334:1;330:14;322:6;318:27;314:38;311:47;308:67;;;371:1;368;361:12;308:67;14:367;;;;;:::o;386:437::-;472:6;480;533:2;521:9;512:7;508:23;504:32;501:52;;;549:1;546;539:12;501:52;589:9;576:23;622:18;614:6;611:30;608:50;;;654:1;651;644:12;608:50;693:70;755:7;746:6;735:9;731:22;693:70;:::i;:::-;782:8;;667:96;;-1:-1:-1;386:437:1;-1:-1:-1;;;;386:437:1:o;1010:597::-;1122:4;1151:2;1180;1169:9;1162:21;1212:6;1206:13;1255:6;1250:2;1239:9;1235:18;1228:34;1280:1;1290:140;1304:6;1301:1;1298:13;1290:140;;;1399:14;;;1395:23;;1389:30;1365:17;;;1384:2;1361:26;1354:66;1319:10;;1290:140;;;1448:6;1445:1;1442:13;1439:91;;;1518:1;1513:2;1504:6;1493:9;1489:22;1485:31;1478:42;1439:91;-1:-1:-1;1591:2:1;1570:15;-1:-1:-1;;1566:29:1;1551:45;;;;1598:2;1547:54;;1010:597;-1:-1:-1;;;1010:597:1:o;1612:131::-;-1:-1:-1;;;;;1687:31:1;;1677:42;;1667:70;;1733:1;1730;1723:12;1748:134;1816:20;;1845:31;1816:20;1845:31;:::i;:::-;1748:134;;;:::o;1887:315::-;1955:6;1963;2016:2;2004:9;1995:7;1991:23;1987:32;1984:52;;;2032:1;2029;2022:12;1984:52;2071:9;2058:23;2090:31;2115:5;2090:31;:::i;:::-;2140:5;2192:2;2177:18;;;;2164:32;;-1:-1:-1;;;1887:315:1:o;3101:456::-;3178:6;3186;3194;3247:2;3235:9;3226:7;3222:23;3218:32;3215:52;;;3263:1;3260;3253:12;3215:52;3302:9;3289:23;3321:31;3346:5;3321:31;:::i;:::-;3371:5;-1:-1:-1;3428:2:1;3413:18;;3400:32;3441:33;3400:32;3441:33;:::i;:::-;3101:456;;3493:7;;-1:-1:-1;;;3547:2:1;3532:18;;;;3519:32;;3101:456::o;3562:180::-;3621:6;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;-1:-1:-1;3713:23:1;;3562:180;-1:-1:-1;3562:180:1:o;3936:160::-;4001:20;;4057:13;;4050:21;4040:32;;4030:60;;4086:1;4083;4076:12;4101:248;4166:6;4174;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4279:9;4266:23;4256:33;;4308:35;4339:2;4328:9;4324:18;4308:35;:::i;:::-;4298:45;;4101:248;;;;;:::o;4562:247::-;4621:6;4674:2;4662:9;4653:7;4649:23;4645:32;4642:52;;;4690:1;4687;4680:12;4642:52;4729:9;4716:23;4748:31;4773:5;4748:31;:::i;5138:316::-;5215:6;5223;5231;5284:2;5272:9;5263:7;5259:23;5255:32;5252:52;;;5300:1;5297;5290:12;5252:52;-1:-1:-1;;5323:23:1;;;5393:2;5378:18;;5365:32;;-1:-1:-1;5444:2:1;5429:18;;;5416:32;;5138:316;-1:-1:-1;5138:316:1:o;5459:127::-;5520:10;5515:3;5511:20;5508:1;5501:31;5551:4;5548:1;5541:15;5575:4;5572:1;5565:15;5591:1121;5675:6;5706:2;5749;5737:9;5728:7;5724:23;5720:32;5717:52;;;5765:1;5762;5755:12;5717:52;5805:9;5792:23;5834:18;5875:2;5867:6;5864:14;5861:34;;;5891:1;5888;5881:12;5861:34;5929:6;5918:9;5914:22;5904:32;;5974:7;5967:4;5963:2;5959:13;5955:27;5945:55;;5996:1;5993;5986:12;5945:55;6032:2;6019:16;6054:2;6050;6047:10;6044:36;;;6060:18;;:::i;:::-;6106:2;6103:1;6099:10;6138:2;6132:9;6201:2;6197:7;6192:2;6188;6184:11;6180:25;6172:6;6168:38;6256:6;6244:10;6241:22;6236:2;6224:10;6221:18;6218:46;6215:72;;;6267:18;;:::i;:::-;6303:2;6296:22;6353:18;;;6387:15;;;;-1:-1:-1;6429:11:1;;;6425:20;;;6457:19;;;6454:39;;;6489:1;6486;6479:12;6454:39;6513:11;;;;6533:148;6549:6;6544:3;6541:15;6533:148;;;6615:23;6634:3;6615:23;:::i;:::-;6603:36;;6566:12;;;;6659;;;;6533:148;;;6700:6;5591:1121;-1:-1:-1;;;;;;;;5591:1121:1:o;6717:180::-;6773:6;6826:2;6814:9;6805:7;6801:23;6797:32;6794:52;;;6842:1;6839;6832:12;6794:52;6865:26;6881:9;6865:26;:::i;6902:388::-;6970:6;6978;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7086:9;7073:23;7105:31;7130:5;7105:31;:::i;:::-;7155:5;-1:-1:-1;7212:2:1;7197:18;;7184:32;7225:33;7184:32;7225:33;:::i;:::-;7277:7;7267:17;;;6902:388;;;;;:::o;7295:454::-;7390:6;7398;7406;7414;7422;7475:3;7463:9;7454:7;7450:23;7446:33;7443:53;;;7492:1;7489;7482:12;7443:53;-1:-1:-1;;7515:23:1;;;7585:2;7570:18;;7557:32;;-1:-1:-1;7636:2:1;7621:18;;7608:32;;7687:2;7672:18;;7659:32;;-1:-1:-1;7738:3:1;7723:19;7710:33;;-1:-1:-1;7295:454:1;-1:-1:-1;7295:454:1:o;7754:773::-;7876:6;7884;7892;7900;7953:2;7941:9;7932:7;7928:23;7924:32;7921:52;;;7969:1;7966;7959:12;7921:52;8009:9;7996:23;8038:18;8079:2;8071:6;8068:14;8065:34;;;8095:1;8092;8085:12;8065:34;8134:70;8196:7;8187:6;8176:9;8172:22;8134:70;:::i;:::-;8223:8;;-1:-1:-1;8108:96:1;-1:-1:-1;8311:2:1;8296:18;;8283:32;;-1:-1:-1;8327:16:1;;;8324:36;;;8356:1;8353;8346:12;8324:36;;8395:72;8459:7;8448:8;8437:9;8433:24;8395:72;:::i;:::-;7754:773;;;;-1:-1:-1;8486:8:1;-1:-1:-1;;;;7754:773:1:o;8532:356::-;8734:2;8716:21;;;8753:18;;;8746:30;8812:34;8807:2;8792:18;;8785:62;8879:2;8864:18;;8532:356::o;8893:380::-;8972:1;8968:12;;;;9015;;;9036:61;;9090:4;9082:6;9078:17;9068:27;;9036:61;9143:2;9135:6;9132:14;9112:18;9109:38;9106:161;;9189:10;9184:3;9180:20;9177:1;9170:31;9224:4;9221:1;9214:15;9252:4;9249:1;9242:15;9106:161;;8893:380;;;:::o;10049:127::-;10110:10;10105:3;10101:20;10098:1;10091:31;10141:4;10138:1;10131:15;10165:4;10162:1;10155:15;10181:168;10221:7;10287:1;10283;10279:6;10275:14;10272:1;10269:21;10264:1;10257:9;10250:17;10246:45;10243:71;;;10294:18;;:::i;:::-;-1:-1:-1;10334:9:1;;10181:168::o;11115:251::-;11185:6;11238:2;11226:9;11217:7;11213:23;11209:32;11206:52;;;11254:1;11251;11244:12;11206:52;11286:9;11280:16;11305:31;11330:5;11305:31;:::i;12505:127::-;12566:10;12561:3;12557:20;12554:1;12547:31;12597:4;12594:1;12587:15;12621:4;12618:1;12611:15;12637:128;12677:3;12708:1;12704:6;12701:1;12698:13;12695:39;;;12714:18;;:::i;:::-;-1:-1:-1;12750:9:1;;12637:128::o;13177:135::-;13216:3;13237:17;;;13234:43;;13257:18;;:::i;:::-;-1:-1:-1;13304:1:1;13293:13;;13177:135::o;16529:125::-;16569:4;16597:1;16594;16591:8;16588:34;;;16602:18;;:::i;:::-;-1:-1:-1;16639:9:1;;16529:125::o;17015:217::-;17055:1;17081;17071:132;;17125:10;17120:3;17116:20;17113:1;17106:31;17160:4;17157:1;17150:15;17188:4;17185:1;17178:15;17071:132;-1:-1:-1;17217:9:1;;17015:217::o;17639:980::-;17901:4;17949:3;17938:9;17934:19;17980:6;17969:9;17962:25;18006:2;18044:6;18039:2;18028:9;18024:18;18017:34;18087:3;18082:2;18071:9;18067:18;18060:31;18111:6;18146;18140:13;18177:6;18169;18162:22;18215:3;18204:9;18200:19;18193:26;;18254:2;18246:6;18242:15;18228:29;;18275:1;18285:195;18299:6;18296:1;18293:13;18285:195;;;18364:13;;-1:-1:-1;;;;;18360:39:1;18348:52;;18455:15;;;;18420:12;;;;18396:1;18314:9;18285:195;;;-1:-1:-1;;;;;;;18536:32:1;;;;18531:2;18516:18;;18509:60;-1:-1:-1;;;18600:3:1;18585:19;18578:35;18497:3;17639:980;-1:-1:-1;;;17639:980:1:o;19236:306::-;19324:6;19332;19340;19393:2;19381:9;19372:7;19368:23;19364:32;19361:52;;;19409:1;19406;19399:12;19361:52;19438:9;19432:16;19422:26;;19488:2;19477:9;19473:18;19467:25;19457:35;;19532:2;19521:9;19517:18;19511:25;19501:35;;19236:306;;;;;:::o
Swarm Source
ipfs://bde61b9e197283f0aa0d9882cc981749ca1beeadd8450b7334521656947cf044
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.