ERC-20
Overview
Max Total Supply
420,690,000,000,000 KEK
Holders
19
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,849,084,299,515.791028363344811774 KEKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Kekistan
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-19 */ // SPDX-License-Identifier: MIT // https://twitter.com/tehkekistan // https://kekistancoin.xyz/ // https://t.me/teh_kekistan pragma solidity 0.8.17; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on bekhalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract Kekistan is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public percentForLPBurn = 25; bool public lpBurnEnabled = false; uint256 public lpBurnFrequency = 3600 seconds; uint256 public lastLpBurnTime; uint256 public manualBurnFrequency = 30 minutes; uint256 public lastManualLpBurnTime; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Kekistan", "KEK") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 30; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 70; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 420_690_000_000_000 * 1e18; maxTransactionAmount = 4_206_900_000_000 * 1e18; maxWallet = 4_206_900_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 1000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = owner(); devWallet = owner(); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function startTrading() public onlyOwner { tradingActive = true; lastLpBurnTime = block.timestamp; } function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxWallet lower than 0.1%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 50, "Must keep fees at 50% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 50, "Must keep fees at 50% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } if ( !swapping && automatedMarketMakerPairs[to] && lpBurnEnabled && block.timestamp >= lastLpBurnTime + lpBurnFrequency && !_isExcludedFromFees[from] ) { autoBurnLiquidityPairTokens(); } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function manualSend() external { payable(marketingWallet).transfer(address(this).balance); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value : ethAmount}( address(this), tokenAmount, 0, 0, deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value : ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success,) = address(marketingWallet).call{ value : address(this).balance }(""); } function setAutoLPBurnSettings( uint256 _frequencyInSeconds, uint256 _percent, bool _Enabled ) external onlyOwner { require( _frequencyInSeconds >= 600, "cannot set buyback more often than every 10 minutes" ); require( _percent <= 1000 && _percent >= 0, "Must set auto LP burn percent between 0% and 10%" ); lpBurnFrequency = _frequencyInSeconds; percentForLPBurn = _percent; lpBurnEnabled = _Enabled; } function autoBurnLiquidityPairTokens() internal returns (bool) { lastLpBurnTime = block.timestamp; uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); uint256 amountToBurn = liquidityPairBalance.mul(percentForLPBurn).div( 10000 ); if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit AutoNukeLP(); return true; } function manualBurnLiquidityPairTokens(uint256 percent) external onlyOwner returns (bool) { require( block.timestamp > lastManualLpBurnTime + manualBurnFrequency, "Must wait for cooldown to finish" ); require(percent <= 1000, "May not nuke more than 10% of tokens in LP"); lastManualLpBurnTime = block.timestamp; uint256 liquidityPairBalance = this.balanceOf(uniswapV2Pair); uint256 amountToBurn = liquidityPairBalance.mul(percent).div(10000); if (amountToBurn > 0) { super._transfer(uniswapV2Pair, address(0xdead), amountToBurn); } IUniswapV2Pair pair = IUniswapV2Pair(uniswapV2Pair); pair.sync(); emit ManualNukeLP(); return true; } }
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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","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":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526019600b55600c805460ff19908116909155610e10600d55610708600f556011805462ffffff1916620100011790556013805490911690553480156200004957600080fd5b506040518060400160405280600881526020016725b2b5b4b9ba30b760c11b815250604051806040016040528060038152602001624b454b60e81b8152508160039081620000989190620006cf565b506004620000a78282620006cf565b505050620000c4620000be620003ba60201b60201c565b620003be565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e681600162000410565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000131573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015791906200079b565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cb91906200079b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000219573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023f91906200079b565b6001600160a01b031660a08190526200025a90600162000410565b60a0516200026a90600162000444565b6c35193a1e7376a35c15b40000006008819055600a55601e600080604681806d14bddab3e51a57cff87a500000006103e8620002a8826005620007e3565b620002b4919062000803565b60095560158790556016869055601785905584620002d3878962000826565b620002df919062000826565b6014556019849055601a839055601b82905581620002fe848662000826565b6200030a919062000826565b601855600554600680546001600160a01b03199081166001600160a01b0390931692831790915560078054909116821790556200034990600162000498565b6200035630600162000498565b6200036561dead600162000498565b620003846200037c6005546001600160a01b031690565b600162000410565b6200039130600162000410565b620003a061dead600162000410565b620003ac338262000501565b50505050505050506200083c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200041a620005c8565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004a2620005c8565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200055d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b806002600082825462000571919062000826565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006245760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000554565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200065657607f821691505b6020821081036200067757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200062657600081815260208120601f850160051c81016020861015620006a65750805b601f850160051c820191505b81811015620006c757828155600101620006b2565b505050505050565b81516001600160401b03811115620006eb57620006eb6200062b565b6200070381620006fc845462000641565b846200067d565b602080601f8311600181146200073b5760008415620007225750858301515b600019600386901b1c1916600185901b178555620006c7565b600085815260208120601f198616915b828110156200076c578886015182559484019460019091019084016200074b565b50858210156200078b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007ae57600080fd5b81516001600160a01b0381168114620007c657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007fd57620007fd620007cd565b92915050565b6000826200082157634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007fd57620007fd620007cd565b60805160a051612ebc620008c46000396000818161062001528181610f8d015281816115d5015281816116700152818161169c01528181611b1001528181612642015281816126e4015261271001526000818161046401528181611ad20152818161281a015281816128d30152818161290f0152818161298901526129e60152612ebc6000f3fe6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f42938901161006f578063f429389014610ace578063f637434214610ae3578063f8b45b0514610af9578063fe72b27a14610b0f57600080fd5b8063e2f4560514610a6d578063e884f26014610a83578063f11a24d314610a98578063f2fde38b14610aae57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a01578063d257b34f14610a17578063d85ba06314610a37578063dd62ed3e14610a4d57600080fd5b8063c024666814610987578063c17b5b8c146109a7578063c18bc195146109c7578063c876d0b9146109e757600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108f8578063aacebbe314610918578063b62496f514610938578063bbc0c7421461096857600080fd5b80639fccce3214610896578063a0d82dc5146108ac578063a457c2d7146108c2578063a4c82a00146108e257600080fd5b806395d89b41116101c157806395d89b41146108355780639a7a23d61461084a5780639c3b4fdc1461086a5780639ec22c0e1461088057600080fd5b80638da5cb5b146107c15780638ea5220f146107df57806392136913146107ff578063924de9b71461081557600080fd5b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461074b57806375f0a8741461076b5780637bce5a041461078b5780638095d564146107a157600080fd5b806370a08231146106cb578063715018a614610701578063730c188814610716578063751039fc1461073657600080fd5b80634a62bb65116102b15780634a62bb65146106425780634fbee1931461065c5780636a486a8e146106955780636ddd1713146106ab57600080fd5b80632e82f1a0146105b8578063313ce567146105d257806339509351146105ee57806349bd5a5e1461060e57600080fd5b8063199ffc721161035a57806323b872dd1161032957806323b872dd1461055757806327c8f83514610577578063293230b81461058d5780632c3e486c146105a257600080fd5b8063199ffc72146104f55780631a8145bb1461050b5780631f3fed8f14610521578063203e727e1461053757600080fd5b80631694505e116103965780631694505e1461045257806318160ddd1461049e5780631816467f146104bd578063184c16c5146104df57600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b2f565b6040516103ea9190612a64565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ac7565b610bc1565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e366004612af3565b602080526000908152604090205460ff1681565b34801561045e57600080fd5b506104867f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103ea565b3480156104aa57600080fd5b506002545b6040519081526020016103ea565b3480156104c957600080fd5b506104dd6104d8366004612af3565b610bdb565b005b3480156104eb57600080fd5b506104af600f5481565b34801561050157600080fd5b506104af600b5481565b34801561051757600080fd5b506104af601d5481565b34801561052d57600080fd5b506104af601c5481565b34801561054357600080fd5b506104dd610552366004612b10565b610c40565b34801561056357600080fd5b50610413610572366004612b29565b610d00565b34801561058357600080fd5b5061048661dead81565b34801561059957600080fd5b506104dd610d24565b3480156105ae57600080fd5b506104af600d5481565b3480156105c457600080fd5b50600c546104139060ff1681565b3480156105de57600080fd5b50604051601281526020016103ea565b3480156105fa57600080fd5b50610413610609366004612ac7565b610d41565b34801561061a57600080fd5b506104867f000000000000000000000000000000000000000000000000000000000000000081565b34801561064e57600080fd5b506011546104139060ff1681565b34801561066857600080fd5b50610413610677366004612af3565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156106a157600080fd5b506104af60185481565b3480156106b757600080fd5b506011546104139062010000900460ff1681565b3480156106d757600080fd5b506104af6106e6366004612af3565b6001600160a01b031660009081526020819052604090205490565b34801561070d57600080fd5b506104dd610d63565b34801561072257600080fd5b506104dd610731366004612b7a565b610d77565b34801561074257600080fd5b50610413610e7e565b34801561075757600080fd5b506104dd610766366004612baf565b610e98565b34801561077757600080fd5b50600654610486906001600160a01b031681565b34801561079757600080fd5b506104af60155481565b3480156107ad57600080fd5b506104dd6107bc366004612be4565b610eca565b3480156107cd57600080fd5b506005546001600160a01b0316610486565b3480156107eb57600080fd5b50600754610486906001600160a01b031681565b34801561080b57600080fd5b506104af60195481565b34801561082157600080fd5b506104dd610830366004612c10565b610f50565b34801561084157600080fd5b506103dd610f74565b34801561085657600080fd5b506104dd610865366004612baf565b610f83565b34801561087657600080fd5b506104af60175481565b34801561088c57600080fd5b506104af60105481565b3480156108a257600080fd5b506104af601e5481565b3480156108b857600080fd5b506104af601b5481565b3480156108ce57600080fd5b506104136108dd366004612ac7565b611040565b3480156108ee57600080fd5b506104af600e5481565b34801561090457600080fd5b50610413610913366004612ac7565b6110bb565b34801561092457600080fd5b506104dd610933366004612af3565b6110c9565b34801561094457600080fd5b50610413610953366004612af3565b60216020526000908152604090205460ff1681565b34801561097457600080fd5b5060115461041390610100900460ff1681565b34801561099357600080fd5b506104dd6109a2366004612baf565b61112e565b3480156109b357600080fd5b506104dd6109c2366004612be4565b611195565b3480156109d357600080fd5b506104dd6109e2366004612b10565b611216565b3480156109f357600080fd5b506013546104139060ff1681565b348015610a0d57600080fd5b506104af60085481565b348015610a2357600080fd5b50610413610a32366004612b10565b6112c5565b348015610a4357600080fd5b506104af60145481565b348015610a5957600080fd5b506104af610a68366004612c2b565b6113f6565b348015610a7957600080fd5b506104af60095481565b348015610a8f57600080fd5b50610413611421565b348015610aa457600080fd5b506104af60165481565b348015610aba57600080fd5b506104dd610ac9366004612af3565b61143b565b348015610ada57600080fd5b506104dd6114b4565b348015610aef57600080fd5b506104af601a5481565b348015610b0557600080fd5b506104af600a5481565b348015610b1b57600080fd5b50610413610b2a366004612b10565b6114ed565b606060038054610b3e90612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90612c64565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b600033610bcf818585611744565b60019150505b92915050565b610be3611868565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c48611868565b670de0b6b3a76400006103e8610c5d60025490565b610c68906001612cb4565b610c729190612ccb565b610c7c9190612ccb565b811015610ce85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610cfa81670de0b6b3a7640000612cb4565b60085550565b600033610d0e8582856118c2565b610d1985858561193c565b506001949350505050565b610d2c611868565b6011805461ff00191661010017905542600e55565b600033610bcf818585610d5483836113f6565b610d5e9190612ced565b611744565b610d6b611868565b610d756000612214565b565b610d7f611868565b610258831015610ded5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610cdf565b6103e88211158015610dfd575060015b610e625760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610cdf565b600d92909255600b55600c805460ff1916911515919091179055565b6000610e88611868565b506011805460ff19169055600190565b610ea0611868565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610ed2611868565b60158390556016829055601781905580610eec8385612ced565b610ef69190612ced565b601481905560321015610f4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cdf565b505050565b610f58611868565b60118054911515620100000262ff000019909216919091179055565b606060048054610b3e90612c64565b610f8b611868565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110325760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cdf565b61103c8282612266565b5050565b6000338161104e82866113f6565b9050838110156110ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cdf565b610d198286868403611744565b600033610bcf81858561193c565b6110d1611868565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b611136611868565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61119d611868565b6019839055601a829055601b819055806111b78385612ced565b6111c19190612ced565b601881905560321015610f4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cdf565b61121e611868565b670de0b6b3a76400006103e861123360025490565b61123e906001612cb4565b6112489190612ccb565b6112529190612ccb565b8110156112ad5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e312560e01b6064820152608401610cdf565b6112bf81670de0b6b3a7640000612cb4565b600a5550565b60006112cf611868565b620186a06112dc60025490565b6112e7906001612cb4565b6112f19190612ccb565b82101561135e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cdf565b606461136960025490565b611374906004612cb4565b61137e9190612ccb565b8211156113e85760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608401610cdf565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061142b611868565b506013805460ff19169055600190565b611443611868565b6001600160a01b0381166114a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cdf565b6114b181612214565b50565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156114b1573d6000803e3d6000fd5b60006114f7611868565b600f546010546115079190612ced565b42116115555760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cdf565b6103e88211156115ba5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cdf565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016600482015260009030906370a0823190602401602060405180830381865afa158015611625573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116499190612d00565b9050600061166361271061165d84876122ba565b906122cd565b90508015611698576116987f000000000000000000000000000000000000000000000000000000000000000061dead836122d9565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f857600080fd5b505af115801561170c573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166117a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cdf565b6001600160a01b0382166118075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cdf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdf565b60006118ce84846113f6565b9050600019811461193657818110156119295760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cdf565b6119368484848403611744565b50505050565b6001600160a01b0383166119625760405162461bcd60e51b8152600401610cdf90612d19565b6001600160a01b0382166119885760405162461bcd60e51b8152600401610cdf90612d5e565b8060000361199c57610f4b838360006122d9565b60115460ff1615611e56576005546001600160a01b038481169116148015906119d357506005546001600160a01b03838116911614155b80156119e757506001600160a01b03821615155b80156119fe57506001600160a01b03821661dead14155b8015611a145750600554600160a01b900460ff16155b15611e5657601154610100900460ff16611aac576001600160a01b0383166000908152601f602052604090205460ff1680611a6757506001600160a01b0382166000908152601f602052604090205460ff165b611aac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cdf565b60135460ff1615611bf3576005546001600160a01b03838116911614801590611b0757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b8015611b4557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b15611bf357326000908152601260205260409020544311611be05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cdf565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611c3357506001600160a01b038216600090815260208052604090205460ff16155b15611d1757600854811115611ca85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cdf565b600a546001600160a01b038316600090815260208190526040902054611cce9083612ced565b1115611d125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cdf565b611e56565b6001600160a01b03821660009081526021602052604090205460ff168015611d5757506001600160a01b038316600090815260208052604090205460ff16155b15611dcd57600854811115611d125760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cdf565b6001600160a01b038216600090815260208052604090205460ff16611e5657600a546001600160a01b038316600090815260208190526040902054611e129083612ced565b1115611e565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cdf565b3060009081526020819052604090205460095481108015908190611e82575060115462010000900460ff165b8015611e985750600554600160a01b900460ff16155b8015611ebd57506001600160a01b03851660009081526021602052604090205460ff16155b8015611ee257506001600160a01b0385166000908152601f602052604090205460ff16155b8015611f0757506001600160a01b0384166000908152601f602052604090205460ff16155b15611f35576005805460ff60a01b1916600160a01b179055611f27612403565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611f6757506001600160a01b03841660009081526021602052604090205460ff165b8015611f755750600c5460ff165b8015611f905750600d54600e54611f8c9190612ced565b4210155b8015611fb557506001600160a01b0385166000908152601f602052604090205460ff16155b15611fc457611fc2612627565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061201257506001600160a01b0385166000908152601f602052604090205460ff165b1561201b575060005b60008115612200576001600160a01b03861660009081526021602052604090205460ff16801561204d57506000601854115b156121055761206c606461165d601854886122ba90919063ffffffff16565b9050601854601a548261207f9190612cb4565b6120899190612ccb565b601d600082825461209a9190612ced565b9091555050601854601b546120af9083612cb4565b6120b99190612ccb565b601e60008282546120ca9190612ced565b90915550506018546019546120df9083612cb4565b6120e99190612ccb565b601c60008282546120fa9190612ced565b909155506121e29050565b6001600160a01b03871660009081526021602052604090205460ff16801561212f57506000601454115b156121e25761214e606461165d601454886122ba90919063ffffffff16565b9050601454601654826121619190612cb4565b61216b9190612ccb565b601d600082825461217c9190612ced565b90915550506014546017546121919083612cb4565b61219b9190612ccb565b601e60008282546121ac9190612ced565b90915550506014546015546121c19083612cb4565b6121cb9190612ccb565b601c60008282546121dc9190612ced565b90915550505b80156121f3576121f38730836122d9565b6121fd8186612da1565b94505b61220b8787876122d9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006122c68284612cb4565b9392505050565b60006122c68284612ccb565b6001600160a01b0383166122ff5760405162461bcd60e51b8152600401610cdf90612d19565b6001600160a01b0382166123255760405162461bcd60e51b8152600401610cdf90612d5e565b6001600160a01b0383166000908152602081905260409020548181101561239d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cdf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611936565b3060009081526020819052604081205490506000601e54601c54601d5461242a9190612ced565b6124349190612ced565b90506000821580612443575081155b1561244d57505050565b60095483111561245d5760095492505b6000600283601d54866124709190612cb4565b61247a9190612ccb565b6124849190612ccb565b9050600061249285836127b7565b90504761249e826127c3565b60006124aa47836127b7565b905060006124c78761165d601c54856122ba90919063ffffffff16565b905060006124e48861165d601e54866122ba90919063ffffffff16565b90506000816124f38486612da1565b6124fd9190612da1565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461255a576040519150601f19603f3d011682016040523d82523d6000602084013e61255f565b606091505b509098505086158015906125735750600081115b156125c6576125828782612983565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612613576040519150601f19603f3d011682016040523d82523d6000602084013e612618565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000166004820152600090819030906370a0823190602401602060405180830381865afa158015612694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b89190612d00565b905060006126d761271061165d600b54856122ba90919063ffffffff16565b9050801561270c5761270c7f000000000000000000000000000000000000000000000000000000000000000061dead836122d9565b60007f00000000000000000000000000000000000000000000000000000000000000009050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561276c57600080fd5b505af1158015612780573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006122c68284612da1565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127f8576127f8612db4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289a9190612dca565b816001815181106128ad576128ad612db4565b60200260200101906001600160a01b031690816001600160a01b0316815250506128f8307f000000000000000000000000000000000000000000000000000000000000000084611744565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061294d908590600090869030904290600401612de7565b600060405180830381600087803b15801561296757600080fd5b505af115801561297b573d6000803e3d6000fd5b505050505050565b6129ae307f000000000000000000000000000000000000000000000000000000000000000084611744565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612a38573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5d9190612e58565b5050505050565b600060208083528351808285015260005b81811015612a9157858101830151858201604001528201612a75565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114b157600080fd5b60008060408385031215612ada57600080fd5b8235612ae581612ab2565b946020939093013593505050565b600060208284031215612b0557600080fd5b81356122c681612ab2565b600060208284031215612b2257600080fd5b5035919050565b600080600060608486031215612b3e57600080fd5b8335612b4981612ab2565b92506020840135612b5981612ab2565b929592945050506040919091013590565b803580151581146113f157600080fd5b600080600060608486031215612b8f57600080fd5b8335925060208401359150612ba660408501612b6a565b90509250925092565b60008060408385031215612bc257600080fd5b8235612bcd81612ab2565b9150612bdb60208401612b6a565b90509250929050565b600080600060608486031215612bf957600080fd5b505081359360208301359350604090920135919050565b600060208284031215612c2257600080fd5b6122c682612b6a565b60008060408385031215612c3e57600080fd5b8235612c4981612ab2565b91506020830135612c5981612ab2565b809150509250929050565b600181811c90821680612c7857607f821691505b602082108103612c9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610bd557610bd5612c9e565b600082612ce857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bd557610bd5612c9e565b600060208284031215612d1257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bd557610bd5612c9e565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ddc57600080fd5b81516122c681612ab2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e375784516001600160a01b031683529383019391830191600101612e12565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e6d57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122001634819990633a3fed7623f3d063edd602a700999e68b1972beeab56909074964736f6c63430008110033
Deployed Bytecode
0x6080604052600436106103bc5760003560e01c80638da5cb5b116101f2578063c02466681161010d578063e2f45605116100a0578063f42938901161006f578063f429389014610ace578063f637434214610ae3578063f8b45b0514610af9578063fe72b27a14610b0f57600080fd5b8063e2f4560514610a6d578063e884f26014610a83578063f11a24d314610a98578063f2fde38b14610aae57600080fd5b8063c8c8ebe4116100dc578063c8c8ebe414610a01578063d257b34f14610a17578063d85ba06314610a37578063dd62ed3e14610a4d57600080fd5b8063c024666814610987578063c17b5b8c146109a7578063c18bc195146109c7578063c876d0b9146109e757600080fd5b80639fccce3211610185578063a9059cbb11610154578063a9059cbb146108f8578063aacebbe314610918578063b62496f514610938578063bbc0c7421461096857600080fd5b80639fccce3214610896578063a0d82dc5146108ac578063a457c2d7146108c2578063a4c82a00146108e257600080fd5b806395d89b41116101c157806395d89b41146108355780639a7a23d61461084a5780639c3b4fdc1461086a5780639ec22c0e1461088057600080fd5b80638da5cb5b146107c15780638ea5220f146107df57806392136913146107ff578063924de9b71461081557600080fd5b80632e82f1a0116102e257806370a08231116102755780637571336a116102445780637571336a1461074b57806375f0a8741461076b5780637bce5a041461078b5780638095d564146107a157600080fd5b806370a08231146106cb578063715018a614610701578063730c188814610716578063751039fc1461073657600080fd5b80634a62bb65116102b15780634a62bb65146106425780634fbee1931461065c5780636a486a8e146106955780636ddd1713146106ab57600080fd5b80632e82f1a0146105b8578063313ce567146105d257806339509351146105ee57806349bd5a5e1461060e57600080fd5b8063199ffc721161035a57806323b872dd1161032957806323b872dd1461055757806327c8f83514610577578063293230b81461058d5780632c3e486c146105a257600080fd5b8063199ffc72146104f55780631a8145bb1461050b5780631f3fed8f14610521578063203e727e1461053757600080fd5b80631694505e116103965780631694505e1461045257806318160ddd1461049e5780631816467f146104bd578063184c16c5146104df57600080fd5b806306fdde03146103c8578063095ea7b3146103f357806310d5de531461042357600080fd5b366103c357005b600080fd5b3480156103d457600080fd5b506103dd610b2f565b6040516103ea9190612a64565b60405180910390f35b3480156103ff57600080fd5b5061041361040e366004612ac7565b610bc1565b60405190151581526020016103ea565b34801561042f57600080fd5b5061041361043e366004612af3565b602080526000908152604090205460ff1681565b34801561045e57600080fd5b506104867f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103ea565b3480156104aa57600080fd5b506002545b6040519081526020016103ea565b3480156104c957600080fd5b506104dd6104d8366004612af3565b610bdb565b005b3480156104eb57600080fd5b506104af600f5481565b34801561050157600080fd5b506104af600b5481565b34801561051757600080fd5b506104af601d5481565b34801561052d57600080fd5b506104af601c5481565b34801561054357600080fd5b506104dd610552366004612b10565b610c40565b34801561056357600080fd5b50610413610572366004612b29565b610d00565b34801561058357600080fd5b5061048661dead81565b34801561059957600080fd5b506104dd610d24565b3480156105ae57600080fd5b506104af600d5481565b3480156105c457600080fd5b50600c546104139060ff1681565b3480156105de57600080fd5b50604051601281526020016103ea565b3480156105fa57600080fd5b50610413610609366004612ac7565b610d41565b34801561061a57600080fd5b506104867f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f81565b34801561064e57600080fd5b506011546104139060ff1681565b34801561066857600080fd5b50610413610677366004612af3565b6001600160a01b03166000908152601f602052604090205460ff1690565b3480156106a157600080fd5b506104af60185481565b3480156106b757600080fd5b506011546104139062010000900460ff1681565b3480156106d757600080fd5b506104af6106e6366004612af3565b6001600160a01b031660009081526020819052604090205490565b34801561070d57600080fd5b506104dd610d63565b34801561072257600080fd5b506104dd610731366004612b7a565b610d77565b34801561074257600080fd5b50610413610e7e565b34801561075757600080fd5b506104dd610766366004612baf565b610e98565b34801561077757600080fd5b50600654610486906001600160a01b031681565b34801561079757600080fd5b506104af60155481565b3480156107ad57600080fd5b506104dd6107bc366004612be4565b610eca565b3480156107cd57600080fd5b506005546001600160a01b0316610486565b3480156107eb57600080fd5b50600754610486906001600160a01b031681565b34801561080b57600080fd5b506104af60195481565b34801561082157600080fd5b506104dd610830366004612c10565b610f50565b34801561084157600080fd5b506103dd610f74565b34801561085657600080fd5b506104dd610865366004612baf565b610f83565b34801561087657600080fd5b506104af60175481565b34801561088c57600080fd5b506104af60105481565b3480156108a257600080fd5b506104af601e5481565b3480156108b857600080fd5b506104af601b5481565b3480156108ce57600080fd5b506104136108dd366004612ac7565b611040565b3480156108ee57600080fd5b506104af600e5481565b34801561090457600080fd5b50610413610913366004612ac7565b6110bb565b34801561092457600080fd5b506104dd610933366004612af3565b6110c9565b34801561094457600080fd5b50610413610953366004612af3565b60216020526000908152604090205460ff1681565b34801561097457600080fd5b5060115461041390610100900460ff1681565b34801561099357600080fd5b506104dd6109a2366004612baf565b61112e565b3480156109b357600080fd5b506104dd6109c2366004612be4565b611195565b3480156109d357600080fd5b506104dd6109e2366004612b10565b611216565b3480156109f357600080fd5b506013546104139060ff1681565b348015610a0d57600080fd5b506104af60085481565b348015610a2357600080fd5b50610413610a32366004612b10565b6112c5565b348015610a4357600080fd5b506104af60145481565b348015610a5957600080fd5b506104af610a68366004612c2b565b6113f6565b348015610a7957600080fd5b506104af60095481565b348015610a8f57600080fd5b50610413611421565b348015610aa457600080fd5b506104af60165481565b348015610aba57600080fd5b506104dd610ac9366004612af3565b61143b565b348015610ada57600080fd5b506104dd6114b4565b348015610aef57600080fd5b506104af601a5481565b348015610b0557600080fd5b506104af600a5481565b348015610b1b57600080fd5b50610413610b2a366004612b10565b6114ed565b606060038054610b3e90612c64565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6a90612c64565b8015610bb75780601f10610b8c57610100808354040283529160200191610bb7565b820191906000526020600020905b815481529060010190602001808311610b9a57829003601f168201915b5050505050905090565b600033610bcf818585611744565b60019150505b92915050565b610be3611868565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b610c48611868565b670de0b6b3a76400006103e8610c5d60025490565b610c68906001612cb4565b610c729190612ccb565b610c7c9190612ccb565b811015610ce85760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084015b60405180910390fd5b610cfa81670de0b6b3a7640000612cb4565b60085550565b600033610d0e8582856118c2565b610d1985858561193c565b506001949350505050565b610d2c611868565b6011805461ff00191661010017905542600e55565b600033610bcf818585610d5483836113f6565b610d5e9190612ced565b611744565b610d6b611868565b610d756000612214565b565b610d7f611868565b610258831015610ded5760405162461bcd60e51b815260206004820152603360248201527f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e207468604482015272616e206576657279203130206d696e7574657360681b6064820152608401610cdf565b6103e88211158015610dfd575060015b610e625760405162461bcd60e51b815260206004820152603060248201527f4d75737420736574206175746f204c50206275726e2070657263656e7420626560448201526f747765656e20302520616e642031302560801b6064820152608401610cdf565b600d92909255600b55600c805460ff1916911515919091179055565b6000610e88611868565b506011805460ff19169055600190565b610ea0611868565b6001600160a01b039190911660009081526020805260409020805460ff1916911515919091179055565b610ed2611868565b60158390556016829055601781905580610eec8385612ced565b610ef69190612ced565b601481905560321015610f4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cdf565b505050565b610f58611868565b60118054911515620100000262ff000019909216919091179055565b606060048054610b3e90612c64565b610f8b611868565b7f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f6001600160a01b0316826001600160a01b0316036110325760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610cdf565b61103c8282612266565b5050565b6000338161104e82866113f6565b9050838110156110ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610cdf565b610d198286868403611744565b600033610bcf81858561193c565b6110d1611868565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b611136611868565b6001600160a01b0382166000818152601f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b61119d611868565b6019839055601a829055601b819055806111b78385612ced565b6111c19190612ced565b601881905560321015610f4b5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420353025206f72206c6573730000006044820152606401610cdf565b61121e611868565b670de0b6b3a76400006103e861123360025490565b61123e906001612cb4565b6112489190612ccb565b6112529190612ccb565b8110156112ad5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e312560e01b6064820152608401610cdf565b6112bf81670de0b6b3a7640000612cb4565b600a5550565b60006112cf611868565b620186a06112dc60025490565b6112e7906001612cb4565b6112f19190612ccb565b82101561135e5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610cdf565b606461136960025490565b611374906004612cb4565b61137e9190612ccb565b8211156113e85760405162461bcd60e51b815260206004820152603260248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527137101a12903a37ba30b61039bab838363c9760711b6064820152608401610cdf565b50600981905560015b919050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061142b611868565b506013805460ff19169055600190565b611443611868565b6001600160a01b0381166114a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610cdf565b6114b181612214565b50565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156114b1573d6000803e3d6000fd5b60006114f7611868565b600f546010546115079190612ced565b42116115555760405162461bcd60e51b815260206004820181905260248201527f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e6973686044820152606401610cdf565b6103e88211156115ba5760405162461bcd60e51b815260206004820152602a60248201527f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60448201526906b656e7320696e204c560b41b6064820152608401610cdf565b426010556040516370a0823160e01b81526001600160a01b037f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f16600482015260009030906370a0823190602401602060405180830381865afa158015611625573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116499190612d00565b9050600061166361271061165d84876122ba565b906122cd565b90508015611698576116987f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f61dead836122d9565b60007f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f857600080fd5b505af115801561170c573d6000803e3d6000fd5b50506040517f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb925060009150a1506001949350505050565b6001600160a01b0383166117a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610cdf565b6001600160a01b0382166118075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610cdf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610cdf565b60006118ce84846113f6565b9050600019811461193657818110156119295760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610cdf565b6119368484848403611744565b50505050565b6001600160a01b0383166119625760405162461bcd60e51b8152600401610cdf90612d19565b6001600160a01b0382166119885760405162461bcd60e51b8152600401610cdf90612d5e565b8060000361199c57610f4b838360006122d9565b60115460ff1615611e56576005546001600160a01b038481169116148015906119d357506005546001600160a01b03838116911614155b80156119e757506001600160a01b03821615155b80156119fe57506001600160a01b03821661dead14155b8015611a145750600554600160a01b900460ff16155b15611e5657601154610100900460ff16611aac576001600160a01b0383166000908152601f602052604090205460ff1680611a6757506001600160a01b0382166000908152601f602052604090205460ff165b611aac5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610cdf565b60135460ff1615611bf3576005546001600160a01b03838116911614801590611b0757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b8015611b4557507f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f6001600160a01b0316826001600160a01b031614155b15611bf357326000908152601260205260409020544311611be05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610cdf565b3260009081526012602052604090204390555b6001600160a01b03831660009081526021602052604090205460ff168015611c3357506001600160a01b038216600090815260208052604090205460ff16155b15611d1757600854811115611ca85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610cdf565b600a546001600160a01b038316600090815260208190526040902054611cce9083612ced565b1115611d125760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cdf565b611e56565b6001600160a01b03821660009081526021602052604090205460ff168015611d5757506001600160a01b038316600090815260208052604090205460ff16155b15611dcd57600854811115611d125760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610cdf565b6001600160a01b038216600090815260208052604090205460ff16611e5657600a546001600160a01b038316600090815260208190526040902054611e129083612ced565b1115611e565760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610cdf565b3060009081526020819052604090205460095481108015908190611e82575060115462010000900460ff165b8015611e985750600554600160a01b900460ff16155b8015611ebd57506001600160a01b03851660009081526021602052604090205460ff16155b8015611ee257506001600160a01b0385166000908152601f602052604090205460ff16155b8015611f0757506001600160a01b0384166000908152601f602052604090205460ff16155b15611f35576005805460ff60a01b1916600160a01b179055611f27612403565b6005805460ff60a01b191690555b600554600160a01b900460ff16158015611f6757506001600160a01b03841660009081526021602052604090205460ff165b8015611f755750600c5460ff165b8015611f905750600d54600e54611f8c9190612ced565b4210155b8015611fb557506001600160a01b0385166000908152601f602052604090205460ff16155b15611fc457611fc2612627565b505b6005546001600160a01b0386166000908152601f602052604090205460ff600160a01b90920482161591168061201257506001600160a01b0385166000908152601f602052604090205460ff165b1561201b575060005b60008115612200576001600160a01b03861660009081526021602052604090205460ff16801561204d57506000601854115b156121055761206c606461165d601854886122ba90919063ffffffff16565b9050601854601a548261207f9190612cb4565b6120899190612ccb565b601d600082825461209a9190612ced565b9091555050601854601b546120af9083612cb4565b6120b99190612ccb565b601e60008282546120ca9190612ced565b90915550506018546019546120df9083612cb4565b6120e99190612ccb565b601c60008282546120fa9190612ced565b909155506121e29050565b6001600160a01b03871660009081526021602052604090205460ff16801561212f57506000601454115b156121e25761214e606461165d601454886122ba90919063ffffffff16565b9050601454601654826121619190612cb4565b61216b9190612ccb565b601d600082825461217c9190612ced565b90915550506014546017546121919083612cb4565b61219b9190612ccb565b601e60008282546121ac9190612ced565b90915550506014546015546121c19083612cb4565b6121cb9190612ccb565b601c60008282546121dc9190612ced565b90915550505b80156121f3576121f38730836122d9565b6121fd8186612da1565b94505b61220b8787876122d9565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260216020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b60006122c68284612cb4565b9392505050565b60006122c68284612ccb565b6001600160a01b0383166122ff5760405162461bcd60e51b8152600401610cdf90612d19565b6001600160a01b0382166123255760405162461bcd60e51b8152600401610cdf90612d5e565b6001600160a01b0383166000908152602081905260409020548181101561239d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610cdf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611936565b3060009081526020819052604081205490506000601e54601c54601d5461242a9190612ced565b6124349190612ced565b90506000821580612443575081155b1561244d57505050565b60095483111561245d5760095492505b6000600283601d54866124709190612cb4565b61247a9190612ccb565b6124849190612ccb565b9050600061249285836127b7565b90504761249e826127c3565b60006124aa47836127b7565b905060006124c78761165d601c54856122ba90919063ffffffff16565b905060006124e48861165d601e54866122ba90919063ffffffff16565b90506000816124f38486612da1565b6124fd9190612da1565b6000601d819055601c819055601e8190556007546040519293506001600160a01b031691849181818185875af1925050503d806000811461255a576040519150601f19603f3d011682016040523d82523d6000602084013e61255f565b606091505b509098505086158015906125735750600081115b156125c6576125828782612983565b601d54604080518881526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612613576040519150601f19603f3d011682016040523d82523d6000602084013e612618565b606091505b50505050505050505050505050565b42600e556040516370a0823160e01b81526001600160a01b037f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f166004820152600090819030906370a0823190602401602060405180830381865afa158015612694573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126b89190612d00565b905060006126d761271061165d600b54856122ba90919063ffffffff16565b9050801561270c5761270c7f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f61dead836122d9565b60007f000000000000000000000000b1e28a9bdea9dd249dfaf0bd42c48a99e53e177f9050806001600160a01b031663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561276c57600080fd5b505af1158015612780573d6000803e3d6000fd5b50506040517f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d925060009150a16001935050505090565b60006122c68284612da1565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106127f8576127f8612db4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612876573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061289a9190612dca565b816001815181106128ad576128ad612db4565b60200260200101906001600160a01b031690816001600160a01b0316815250506128f8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611744565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061294d908590600090869030904290600401612de7565b600060405180830381600087803b15801561296757600080fd5b505af115801561297b573d6000803e3d6000fd5b505050505050565b6129ae307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611744565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612a38573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612a5d9190612e58565b5050505050565b600060208083528351808285015260005b81811015612a9157858101830151858201604001528201612a75565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146114b157600080fd5b60008060408385031215612ada57600080fd5b8235612ae581612ab2565b946020939093013593505050565b600060208284031215612b0557600080fd5b81356122c681612ab2565b600060208284031215612b2257600080fd5b5035919050565b600080600060608486031215612b3e57600080fd5b8335612b4981612ab2565b92506020840135612b5981612ab2565b929592945050506040919091013590565b803580151581146113f157600080fd5b600080600060608486031215612b8f57600080fd5b8335925060208401359150612ba660408501612b6a565b90509250925092565b60008060408385031215612bc257600080fd5b8235612bcd81612ab2565b9150612bdb60208401612b6a565b90509250929050565b600080600060608486031215612bf957600080fd5b505081359360208301359350604090920135919050565b600060208284031215612c2257600080fd5b6122c682612b6a565b60008060408385031215612c3e57600080fd5b8235612c4981612ab2565b91506020830135612c5981612ab2565b809150509250929050565b600181811c90821680612c7857607f821691505b602082108103612c9857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610bd557610bd5612c9e565b600082612ce857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bd557610bd5612c9e565b600060208284031215612d1257600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610bd557610bd5612c9e565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612ddc57600080fd5b81516122c681612ab2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e375784516001600160a01b031683529383019391830191600101612e12565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612e6d57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122001634819990633a3fed7623f3d063edd602a700999e68b1972beeab56909074964736f6c63430008110033
Deployed Bytecode Sourcemap
34442:17330:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23346:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25697:201;;;;;;;;;;-1:-1:-1;25697:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;25697:201:0;1023:187:1;35871:63:0;;;;;;;;;;-1:-1:-1;35871:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34520:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1658:32:1;;;1640:51;;1628:2;1613:18;34520:51:0;1467:230:1;24466:108:0;;;;;;;;;;-1:-1:-1;24554:12:0;;24466:108;;;1848:25:1;;;1836:2;1821:18;24466:108:0;1702:177:1;42212:157:0;;;;;;;;;;-1:-1:-1;42212:157:0;;;;;:::i;:::-;;:::i;:::-;;35073:47;;;;;;;;;;;;;;;;34900:36;;;;;;;;;;;;;;;;35736:33;;;;;;;;;;;;;;;;35696;;;;;;;;;;;;;;;;39634:277;;;;;;;;;;-1:-1:-1;39634:277:0;;;;;:::i;:::-;;:::i;26478:295::-;;;;;;;;;;-1:-1:-1;26478:295:0;;;;;:::i;:::-;;:::i;34623:53::-;;;;;;;;;;;;34669:6;34623:53;;38741:123;;;;;;;;;;;;;:::i;34983:45::-;;;;;;;;;;;;;;;;34943:33;;;;;;;;;;-1:-1:-1;34943:33:0;;;;;;;;24308:93;;;;;;;;;;-1:-1:-1;24308:93:0;;24391:2;2880:36:1;;2868:2;2853:18;24308:93:0;2738:184:1;27182:238:0;;;;;;;;;;-1:-1:-1;27182:238:0;;;;;:::i;:::-;;:::i;34578:38::-;;;;;;;;;;;;;;;35171:33;;;;;;;;;;-1:-1:-1;35171:33:0;;;;;;;;42377:126;;;;;;;;;;-1:-1:-1;42377:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42467:28:0;42443:4;42467:28;;;:19;:28;;;;;;;;;42377:126;35551:28;;;;;;;;;;;;;;;;35251:30;;;;;;;;;;-1:-1:-1;35251:30:0;;;;;;;;;;;24637:127;;;;;;;;;;-1:-1:-1;24637:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;24738:18:0;24711:7;24738:18;;;;;;;;;;;;24637:127;2637:103;;;;;;;;;;;;;:::i;49826:555::-;;;;;;;;;;-1:-1:-1;49826:555:0;;;;;:::i;:::-;;:::i;38872:121::-;;;;;;;;;;;;;:::i;40185:159::-;;;;;;;;;;-1:-1:-1;40185:159:0;;;;;:::i;:::-;;:::i;34715:30::-;;;;;;;;;;-1:-1:-1;34715:30:0;;;;-1:-1:-1;;;;;34715:30:0;;;35444;;;;;;;;;;;;;;;;40460:403;;;;;;;;;;-1:-1:-1;40460:403:0;;;;;:::i;:::-;;:::i;1989:87::-;;;;;;;;;;-1:-1:-1;2062:6:0;;-1:-1:-1;;;;;2062:6:0;1989:87;;34752:24;;;;;;;;;;-1:-1:-1;34752:24:0;;;;-1:-1:-1;;;;;34752:24:0;;;35586:31;;;;;;;;;;;;;;;;40352:100;;;;;;;;;;-1:-1:-1;40352:100:0;;;;;:::i;:::-;;:::i;23565:104::-;;;;;;;;;;;;;:::i;41481:296::-;;;;;;;;;;-1:-1:-1;41481:296:0;;;;;:::i;:::-;;:::i;35518:24::-;;;;;;;;;;;;;;;;35127:35;;;;;;;;;;;;;;;;35776:27;;;;;;;;;;;;;;;;35662:25;;;;;;;;;;;;;;;;27923:424;;;;;;;;;;-1:-1:-1;27923:424:0;;;;;:::i;:::-;;:::i;35035:29::-;;;;;;;;;;;;;;;;24970:193;;;;;;;;;;-1:-1:-1;24970:193:0;;;;;:::i;:::-;;:::i;41981:223::-;;;;;;;;;;-1:-1:-1;41981:223:0;;;;;:::i;:::-;;:::i;35943:57::-;;;;;;;;;;-1:-1:-1;35943:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35211:33;;;;;;;;;;-1:-1:-1;35211:33:0;;;;;;;;;;;41291:182;;;;;;;;;;-1:-1:-1;41291:182:0;;;;;:::i;:::-;;:::i;40871:412::-;;;;;;;;;;-1:-1:-1;40871:412:0;;;;;:::i;:::-;;:::i;39919:258::-;;;;;;;;;;-1:-1:-1;39919:258:0;;;;;:::i;:::-;;:::i;35361:40::-;;;;;;;;;;-1:-1:-1;35361:40:0;;;;;;;;34785:35;;;;;;;;;;;;;;;;39144:482;;;;;;;;;;-1:-1:-1;39144:482:0;;;;;:::i;:::-;;:::i;35410:27::-;;;;;;;;;;;;;;;;25226:151;;;;;;;;;;-1:-1:-1;25226:151:0;;;;;:::i;:::-;;:::i;34827:33::-;;;;;;;;;;;;;;;;39001:135;;;;;;;;;;;;;:::i;35481:30::-;;;;;;;;;;;;;;;;2895:201;;;;;;;;;;-1:-1:-1;2895:201:0;;;;;:::i;:::-;;:::i;47652:106::-;;;;;;;;;;;;;:::i;35624:31::-;;;;;;;;;;;;;;;;34867:24;;;;;;;;;;;;;;;;50955:814;;;;;;;;;;-1:-1:-1;50955:814:0;;;;;:::i;:::-;;:::i;23346:100::-;23400:13;23433:5;23426:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23346:100;:::o;25697:201::-;25780:4;778:10;25836:32;778:10;25852:7;25861:6;25836:8;:32::i;:::-;25886:4;25879:11;;;25697:201;;;;;:::o;42212:157::-;1875:13;:11;:13::i;:::-;42319:9:::1;::::0;42291:38:::1;::::0;-1:-1:-1;;;;;42319:9:0;;::::1;::::0;42291:38;::::1;::::0;::::1;::::0;42319:9:::1;::::0;42291:38:::1;42340:9;:21:::0;;-1:-1:-1;;;;;;42340:21:0::1;-1:-1:-1::0;;;;;42340:21:0;;;::::1;::::0;;;::::1;::::0;;42212:157::o;39634:277::-;1875:13;:11;:13::i;:::-;39771:4:::1;39763;39742:13;24554:12:::0;;;24466:108;39742:13:::1;:17;::::0;39758:1:::1;39742:17;:::i;:::-;39741:26;;;;:::i;:::-;39740:35;;;;:::i;:::-;39730:6;:45;;39708:142;;;::::0;-1:-1:-1;;;39708:142:0;;5746:2:1;39708:142:0::1;::::0;::::1;5728:21:1::0;5785:2;5765:18;;;5758:30;5824:34;5804:18;;;5797:62;-1:-1:-1;;;5875:18:1;;;5868:45;5930:19;;39708:142:0::1;;;;;;;;;39884:19;:6:::0;39894:8:::1;39884:19;:::i;:::-;39861:20;:42:::0;-1:-1:-1;39634:277:0:o;26478:295::-;26609:4;778:10;26667:38;26683:4;778:10;26698:6;26667:15;:38::i;:::-;26716:27;26726:4;26732:2;26736:6;26716:9;:27::i;:::-;-1:-1:-1;26761:4:0;;26478:295;-1:-1:-1;;;;26478:295:0:o;38741:123::-;1875:13;:11;:13::i;:::-;38793::::1;:20:::0;;-1:-1:-1;;38793:20:0::1;;;::::0;;38841:15:::1;38824:14;:32:::0;38741:123::o;27182:238::-;27270:4;778:10;27326:64;778:10;27342:7;27379:10;27351:25;778:10;27342:7;27351:9;:25::i;:::-;:38;;;;:::i;:::-;27326:8;:64::i;2637:103::-;1875:13;:11;:13::i;:::-;2702:30:::1;2729:1;2702:18;:30::i;:::-;2637:103::o:0;49826:555::-;1875:13;:11;:13::i;:::-;50028:3:::1;50005:19;:26;;49983:127;;;::::0;-1:-1:-1;;;49983:127:0;;6292:2:1;49983:127:0::1;::::0;::::1;6274:21:1::0;6331:2;6311:18;;;6304:30;6370:34;6350:18;;;6343:62;-1:-1:-1;;;6421:18:1;;;6414:49;6480:19;;49983:127:0::1;6090:415:1::0;49983:127:0::1;50155:4;50143:8;:16;;:33;;;;-1:-1:-1::0;50163:13:0;50143:33:::1;50121:131;;;::::0;-1:-1:-1;;;50121:131:0;;6712:2:1;50121:131:0::1;::::0;::::1;6694:21:1::0;6751:2;6731:18;;;6724:30;6790:34;6770:18;;;6763:62;-1:-1:-1;;;6841:18:1;;;6834:46;6897:19;;50121:131:0::1;6510:412:1::0;50121:131:0::1;50263:15;:37:::0;;;;50311:16:::1;:27:::0;50349:13:::1;:24:::0;;-1:-1:-1;;50349:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49826:555::o;38872:121::-;38924:4;1875:13;:11;:13::i;:::-;-1:-1:-1;38941:14:0::1;:22:::0;;-1:-1:-1;;38941:22:0::1;::::0;;;38872:121;:::o;40185:159::-;1875:13;:11;:13::i;:::-;-1:-1:-1;;;;;40290:39:0;;;::::1;;::::0;;;:31:::1;:39:::0;;;;;:46;;-1:-1:-1;;40290:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40185:159::o;40460:403::-;1875:13;:11;:13::i;:::-;40610:15:::1;:31:::0;;;40652:15:::1;:31:::0;;;40694:9:::1;:19:::0;;;40706:7;40739:33:::1;40670:13:::0;40628;40739:33:::1;:::i;:::-;:45;;;;:::i;:::-;40724:12;:60:::0;;;40819:2:::1;-1:-1:-1::0;40803:18:0::1;40795:60;;;::::0;-1:-1:-1;;;40795:60:0;;7129:2:1;40795:60:0::1;::::0;::::1;7111:21:1::0;7168:2;7148:18;;;7141:30;7207:31;7187:18;;;7180:59;7256:18;;40795:60:0::1;6927:353:1::0;40795:60:0::1;40460:403:::0;;;:::o;40352:100::-;1875:13;:11;:13::i;:::-;40423:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;40423:21:0;;::::1;::::0;;;::::1;::::0;;40352:100::o;23565:104::-;23621:13;23654:7;23647:14;;;;;:::i;41481:296::-;1875:13;:11;:13::i;:::-;41617::::1;-1:-1:-1::0;;;;;41609:21:0::1;:4;-1:-1:-1::0;;;;;41609:21:0::1;::::0;41587:128:::1;;;::::0;-1:-1:-1;;;41587:128:0;;7487:2:1;41587:128:0::1;::::0;::::1;7469:21:1::0;7526:2;7506:18;;;7499:30;7565:34;7545:18;;;7538:62;7636:27;7616:18;;;7609:55;7681:19;;41587:128:0::1;7285:421:1::0;41587:128:0::1;41728:41;41757:4;41763:5;41728:28;:41::i;:::-;41481:296:::0;;:::o;27923:424::-;28016:4;778:10;28016:4;28099:25;778:10;28116:7;28099:9;:25::i;:::-;28072:52;;28163:15;28143:16;:35;;28135:85;;;;-1:-1:-1;;;28135:85:0;;7913:2:1;28135:85:0;;;7895:21:1;7952:2;7932:18;;;7925:30;7991:34;7971:18;;;7964:62;-1:-1:-1;;;8042:18:1;;;8035:35;8087:19;;28135:85:0;7711:401:1;28135:85:0;28248:60;28257:5;28264:7;28292:15;28273:16;:34;28248:8;:60::i;24970:193::-;25049:4;778:10;25105:28;778:10;25122:2;25126:6;25105:9;:28::i;41981:223::-;1875:13;:11;:13::i;:::-;42133:15:::1;::::0;42090:59:::1;::::0;-1:-1:-1;;;;;42133:15:0;;::::1;::::0;42090:59;::::1;::::0;::::1;::::0;42133:15:::1;::::0;42090:59:::1;42160:15;:36:::0;;-1:-1:-1;;;;;;42160:36:0::1;-1:-1:-1::0;;;;;42160:36:0;;;::::1;::::0;;;::::1;::::0;;41981:223::o;41291:182::-;1875:13;:11;:13::i;:::-;-1:-1:-1;;;;;41376:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41376:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41431:34;;1163:41:1;;;41431:34:0::1;::::0;1136:18:1;41431:34:0::1;;;;;;;41291:182:::0;;:::o;40871:412::-;1875:13;:11;:13::i;:::-;41022:16:::1;:32:::0;;;41065:16:::1;:32:::0;;;41108:10:::1;:20:::0;;;41121:7;41155:35:::1;41084:13:::0;41041;41155:35:::1;:::i;:::-;:48;;;;:::i;:::-;41139:13;:64:::0;;;41239:2:::1;-1:-1:-1::0;41222:19:0::1;41214:61;;;::::0;-1:-1:-1;;;41214:61:0;;7129:2:1;41214:61:0::1;::::0;::::1;7111:21:1::0;7168:2;7148:18;;;7141:30;7207:31;7187:18;;;7180:59;7256:18;;41214:61:0::1;6927:353:1::0;39919:258:0;1875:13;:11;:13::i;:::-;40059:4:::1;40051;40030:13;24554:12:::0;;;24466:108;40030:13:::1;:17;::::0;40046:1:::1;40030:17;:::i;:::-;40029:26;;;;:::i;:::-;40028:35;;;;:::i;:::-;40018:6;:45;;39996:131;;;::::0;-1:-1:-1;;;39996:131:0;;8319:2:1;39996:131:0::1;::::0;::::1;8301:21:1::0;8358:2;8338:18;;;8331:30;8397:34;8377:18;;;8370:62;-1:-1:-1;;;8448:18:1;;;8441:34;8492:19;;39996:131:0::1;8117:400:1::0;39996:131:0::1;40150:19;:6:::0;40160:8:::1;40150:19;:::i;:::-;40138:9;:31:::0;-1:-1:-1;39919:258:0:o;39144:482::-;39240:4;1875:13;:11;:13::i;:::-;39319:6:::1;39298:13;24554:12:::0;;;24466:108;39298:13:::1;:17;::::0;39314:1:::1;39298:17;:::i;:::-;39297:28;;;;:::i;:::-;39284:9;:41;;39262:144;;;::::0;-1:-1:-1;;;39262:144:0;;8724:2:1;39262:144:0::1;::::0;::::1;8706:21:1::0;8763:2;8743:18;;;8736:30;8802:34;8782:18;;;8775:62;-1:-1:-1;;;8853:18:1;;;8846:51;8914:19;;39262:144:0::1;8522:417:1::0;39262:144:0::1;39474:3;39453:13;24554:12:::0;;;24466:108;39453:13:::1;:17;::::0;39469:1:::1;39453:17;:::i;:::-;39452:25;;;;:::i;:::-;39439:9;:38;;39417:138;;;::::0;-1:-1:-1;;;39417:138:0;;9146:2:1;39417:138:0::1;::::0;::::1;9128:21:1::0;9185:2;9165:18;;;9158:30;9224:34;9204:18;;;9197:62;-1:-1:-1;;;9275:18:1;;;9268:48;9333:19;;39417:138:0::1;8944:414:1::0;39417:138:0::1;-1:-1:-1::0;39566:18:0::1;:30:::0;;;39614:4:::1;1899:1;39144:482:::0;;;:::o;25226:151::-;-1:-1:-1;;;;;25342:18:0;;;25315:7;25342:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;25226:151::o;39001:135::-;39061:4;1875:13;:11;:13::i;:::-;-1:-1:-1;39078:20:0::1;:28:::0;;-1:-1:-1;;39078:28:0::1;::::0;;;39001:135;:::o;2895:201::-;1875:13;:11;:13::i;:::-;-1:-1:-1;;;;;2984:22:0;::::1;2976:73;;;::::0;-1:-1:-1;;;2976:73:0;;9565:2:1;2976:73:0::1;::::0;::::1;9547:21:1::0;9604:2;9584:18;;;9577:30;9643:34;9623:18;;;9616:62;-1:-1:-1;;;9694:18:1;;;9687:36;9740:19;;2976:73:0::1;9363:402:1::0;2976:73:0::1;3060:28;3079:8;3060:18;:28::i;:::-;2895:201:::0;:::o;47652:106::-;47702:15;;47694:56;;-1:-1:-1;;;;;47702:15:0;;;;47728:21;47694:56;;;;;47702:15;47694:56;47702:15;47694:56;47728:21;47702:15;47694:56;;;;;;;;;;;;;;;;;;;50955:814;51054:4;1875:13;:11;:13::i;:::-;51139:19:::1;;51116:20;;:42;;;;:::i;:::-;51098:15;:60;51076:142;;;::::0;-1:-1:-1;;;51076:142:0;;9972:2:1;51076:142:0::1;::::0;::::1;9954:21:1::0;;;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;10102:18;;51076:142:0::1;9770:356:1::0;51076:142:0::1;51248:4;51237:7;:15;;51229:70;;;::::0;-1:-1:-1;;;51229:70:0;;10333:2:1;51229:70:0::1;::::0;::::1;10315:21:1::0;10372:2;10352:18;;;10345:30;10411:34;10391:18;;;10384:62;-1:-1:-1;;;10462:18:1;;;10455:40;10512:19;;51229:70:0::1;10131:406:1::0;51229:70:0::1;51333:15;51310:20;:38:::0;51392:29:::1;::::0;-1:-1:-1;;;51392:29:0;;-1:-1:-1;;;;;51407:13:0::1;1658:32:1::0;51392:29:0::1;::::0;::::1;1640:51:1::0;51361:28:0::1;::::0;51392:4:::1;::::0;:14:::1;::::0;1613:18:1;;51392:29:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51361:60:::0;-1:-1:-1;51434:20:0::1;51457:44;51495:5;51457:33;51361:60:::0;51482:7;51457:24:::1;:33::i;:::-;:37:::0;::::1;:44::i;:::-;51434:67:::0;-1:-1:-1;51518:16:0;;51514:110:::1;;51551:61;51567:13;51590:6;51599:12;51551:15;:61::i;:::-;51636:19;51673:13;51636:51;;51698:4;-1:-1:-1::0;;;;;51698:9:0::1;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;51725:14:0::1;::::0;::::1;::::0;-1:-1:-1;51725:14:0;;-1:-1:-1;51725:14:0::1;-1:-1:-1::0;51757:4:0::1;::::0;50955:814;-1:-1:-1;;;;50955:814:0:o;31878:380::-;-1:-1:-1;;;;;32014:19:0;;32006:68;;;;-1:-1:-1;;;32006:68:0;;10933:2:1;32006:68:0;;;10915:21:1;10972:2;10952:18;;;10945:30;11011:34;10991:18;;;10984:62;-1:-1:-1;;;11062:18:1;;;11055:34;11106:19;;32006:68:0;10731:400:1;32006:68:0;-1:-1:-1;;;;;32093:21:0;;32085:68;;;;-1:-1:-1;;;32085:68:0;;11338:2:1;32085:68:0;;;11320:21:1;11377:2;11357:18;;;11350:30;11416:34;11396:18;;;11389:62;-1:-1:-1;;;11467:18:1;;;11460:32;11509:19;;32085:68:0;11136:398:1;32085:68:0;-1:-1:-1;;;;;32166:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;32218:32;;1848:25:1;;;32218:32:0;;1821:18:1;32218:32:0;;;;;;;31878:380;;;:::o;2154:132::-;2062:6;;-1:-1:-1;;;;;2062:6:0;778:10;2218:23;2210:68;;;;-1:-1:-1;;;2210:68:0;;11741:2:1;2210:68:0;;;11723:21:1;;;11760:18;;;11753:30;11819:34;11799:18;;;11792:62;11871:18;;2210:68:0;11539:356:1;32549:433:0;32684:24;32711:25;32721:5;32728:7;32711:9;:25::i;:::-;32684:52;;-1:-1:-1;;32751:16:0;:37;32747:228;;32829:6;32809:16;:26;;32801:68;;;;-1:-1:-1;;;32801:68:0;;12102:2:1;32801:68:0;;;12084:21:1;12141:2;12121:18;;;12114:30;12180:31;12160:18;;;12153:59;12229:18;;32801:68:0;11900:353:1;32801:68:0;32901:51;32910:5;32917:7;32945:6;32926:16;:25;32901:8;:51::i;:::-;32673:309;32549:433;;;:::o;42561:4598::-;-1:-1:-1;;;;;42693:18:0;;42685:68;;;;-1:-1:-1;;;42685:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42772:16:0;;42764:64;;;;-1:-1:-1;;;42764:64:0;;;;;;;:::i;:::-;42845:6;42855:1;42845:11;42841:93;;42873:28;42889:4;42895:2;42899:1;42873:15;:28::i;42841:93::-;42950:14;;;;42946:2296;;;2062:6;;-1:-1:-1;;;;;43003:15:0;;;2062:6;;43003:15;;;;:49;;-1:-1:-1;2062:6:0;;-1:-1:-1;;;;;43039:13:0;;;2062:6;;43039:13;;43003:49;:86;;;;-1:-1:-1;;;;;;43073:16:0;;;;43003:86;:128;;;;-1:-1:-1;;;;;;43110:21:0;;43124:6;43110:21;;43003:128;:158;;;;-1:-1:-1;43153:8:0;;-1:-1:-1;;;43153:8:0;;;;43152:9;43003:158;42981:2250;;;43201:13;;;;;;;43196:223;;-1:-1:-1;;;;;43273:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;43302:23:0;;;;;;:19;:23;;;;;;;;43273:52;43239:160;;;;-1:-1:-1;;;43239:160:0;;13270:2:1;43239:160:0;;;13252:21:1;13309:2;13289:18;;;13282:30;-1:-1:-1;;;13328:18:1;;;13321:52;13390:18;;43239:160:0;13068:346:1;43239:160:0;43443:20;;;;43439:637;;;2062:6;;-1:-1:-1;;;;;43518:13:0;;;2062:6;;43518:13;;;;:72;;;43574:15;-1:-1:-1;;;;;43560:30:0;:2;-1:-1:-1;;;;;43560:30:0;;;43518:72;:129;;;;;43633:13;-1:-1:-1;;;;;43619:28:0;:2;-1:-1:-1;;;;;43619:28:0;;;43518:129;43488:569;;;43765:9;43736:39;;;;:28;:39;;;;;;43807:12;-1:-1:-1;43698:254:0;;;;-1:-1:-1;;;43698:254:0;;13621:2:1;43698:254:0;;;13603:21:1;13660:2;13640:18;;;13633:30;13699:34;13679:18;;;13672:62;13770:34;13750:18;;;13743:62;-1:-1:-1;;;13821:19:1;;;13814:40;13871:19;;43698:254:0;13419:477:1;43698:254:0;44008:9;43979:39;;;;:28;:39;;;;;44021:12;43979:54;;43488:569;-1:-1:-1;;;;;44122:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;44179:35:0;;;;;;:31;:35;;;;;;;;44178:36;44122:92;44096:1120;;;44301:20;;44291:6;:30;;44257:169;;;;-1:-1:-1;;;44257:169:0;;14103:2:1;44257:169:0;;;14085:21:1;14142:2;14122:18;;;14115:30;14181:34;14161:18;;;14154:62;-1:-1:-1;;;14232:18:1;;;14225:51;14293:19;;44257:169:0;13901:417:1;44257:169:0;44509:9;;-1:-1:-1;;;;;24738:18:0;;24711:7;24738:18;;;;;;;;;;;44483:22;;:6;:22;:::i;:::-;:35;;44449:140;;;;-1:-1:-1;;;44449:140:0;;14525:2:1;44449:140:0;;;14507:21:1;14564:2;14544:18;;;14537:30;-1:-1:-1;;;14583:18:1;;;14576:49;14642:18;;44449:140:0;14323:343:1;44449:140:0;44096:1120;;;-1:-1:-1;;;;;44660:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;44715:37:0;;;;;;:31;:37;;;;;;;;44714:38;44660:92;44634:582;;;44839:20;;44829:6;:30;;44795:170;;;;-1:-1:-1;;;44795:170:0;;14873:2:1;44795:170:0;;;14855:21:1;14912:2;14892:18;;;14885:30;14951:34;14931:18;;;14924:62;-1:-1:-1;;;15002:18:1;;;14995:52;15064:19;;44795:170:0;14671:418:1;44634:582:0;-1:-1:-1;;;;;44996:35:0;;;;;;:31;:35;;;;;;;;44991:225;;45116:9;;-1:-1:-1;;;;;24738:18:0;;24711:7;24738:18;;;;;;;;;;;45090:22;;:6;:22;:::i;:::-;:35;;45056:140;;;;-1:-1:-1;;;45056:140:0;;14525:2:1;45056:140:0;;;14507:21:1;14564:2;14544:18;;;14537:30;-1:-1:-1;;;14583:18:1;;;14576:49;14642:18;;45056:140:0;14323:343:1;45056:140:0;45303:4;45254:28;24738:18;;;;;;;;;;;45361;;45337:42;;;;;;;45410:35;;-1:-1:-1;45434:11:0;;;;;;;45410:35;:61;;;;-1:-1:-1;45463:8:0;;-1:-1:-1;;;45463:8:0;;;;45462:9;45410:61;:110;;;;-1:-1:-1;;;;;;45489:31:0;;;;;;:25;:31;;;;;;;;45488:32;45410:110;:153;;;;-1:-1:-1;;;;;;45538:25:0;;;;;;:19;:25;;;;;;;;45537:26;45410:153;:194;;;;-1:-1:-1;;;;;;45581:23:0;;;;;;:19;:23;;;;;;;;45580:24;45410:194;45392:326;;;45631:8;:15;;-1:-1:-1;;;;45631:15:0;-1:-1:-1;;;45631:15:0;;;45663:10;:8;:10::i;:::-;45690:8;:16;;-1:-1:-1;;;;45690:16:0;;;45392:326;45749:8;;-1:-1:-1;;;45749:8:0;;;;45748:9;:51;;;;-1:-1:-1;;;;;;45770:29:0;;;;;;:25;:29;;;;;;;;45748:51;:77;;;;-1:-1:-1;45812:13:0;;;;45748:77;:141;;;;;45874:15;;45857:14;;:32;;;;:::i;:::-;45838:15;:51;;45748:141;:180;;;;-1:-1:-1;;;;;;45903:25:0;;;;;;:19;:25;;;;;;;;45902:26;45748:180;45730:266;;;45955:29;:27;:29::i;:::-;;45730:266;46024:8;;-1:-1:-1;;;;;46049:25:0;;46008:12;46049:25;;;:19;:25;;;;;;46024:8;-1:-1:-1;;;46024:8:0;;;;;46023:9;;46049:25;;:52;;-1:-1:-1;;;;;;46078:23:0;;;;;;:19;:23;;;;;;;;46049:52;46045:100;;;-1:-1:-1;46128:5:0;46045:100;46157:12;46188:7;46184:922;;;-1:-1:-1;;;;;46216:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;46265:1;46249:13;;:17;46216:50;46212:745;;;46294:34;46324:3;46294:25;46305:13;;46294:6;:10;;:25;;;;:::i;:34::-;46287:41;;46397:13;;46377:16;;46370:4;:23;;;;:::i;:::-;46369:41;;;;:::i;:::-;46347:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;46467:13:0;;46453:10;;46446:17;;:4;:17;:::i;:::-;46445:35;;;;:::i;:::-;46429:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;46549:13:0;;46529:16;;46522:23;;:4;:23;:::i;:::-;46521:41;;;;:::i;:::-;46499:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;46212:745:0;;-1:-1:-1;46212:745:0;;-1:-1:-1;;;;;46601:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;46651:1;46636:12;;:16;46601:51;46597:360;;;46680:33;46709:3;46680:24;46691:12;;46680:6;:10;;:24;;;;:::i;:33::-;46673:40;;46781:12;;46762:15;;46755:4;:22;;;;:::i;:::-;46754:39;;;;:::i;:::-;46732:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46849:12:0;;46836:9;;46829:16;;:4;:16;:::i;:::-;46828:33;;;;:::i;:::-;46812:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;46929:12:0;;46910:15;;46903:22;;:4;:22;:::i;:::-;46902:39;;;;:::i;:::-;46880:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;46597:360:0;46977:8;;46973:91;;47006:42;47022:4;47036;47043;47006:15;:42::i;:::-;47080:14;47090:4;47080:14;;:::i;:::-;;;46184:922;47118:33;47134:4;47140:2;47144:6;47118:15;:33::i;:::-;42674:4485;;;;42561:4598;;;:::o;3256:191::-;3349:6;;;-1:-1:-1;;;;;3366:17:0;;;-1:-1:-1;;;;;;3366:17:0;;;;;;;3399:40;;3349:6;;;3366:17;3349:6;;3399:40;;3330:16;;3399:40;3319:128;3256:191;:::o;41785:188::-;-1:-1:-1;;;;;41868:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41868:39:0;;;;;;;;;;41925:40;;41868:39;;:31;41925:40;;;41785:188;;:::o;9518:98::-;9576:7;9603:5;9607:1;9603;:5;:::i;:::-;9596:12;9518:98;-1:-1:-1;;;9518:98:0:o;9917:::-;9975:7;10002:5;10006:1;10002;:5;:::i;28817:816::-;-1:-1:-1;;;;;28948:18:0;;28940:68;;;;-1:-1:-1;;;28940:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29027:16:0;;29019:64;;;;-1:-1:-1;;;29019:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29169:15:0;;29147:19;29169:15;;;;;;;;;;;29203:21;;;;29195:72;;;;-1:-1:-1;;;29195:72:0;;15429:2:1;29195:72:0;;;15411:21:1;15468:2;15448:18;;;15441:30;15507:34;15487:18;;;15480:62;-1:-1:-1;;;15558:18:1;;;15551:36;15604:19;;29195:72:0;15227:402:1;29195:72:0;-1:-1:-1;;;;;29295:15:0;;;:9;:15;;;;;;;;;;;29313:20;;;29295:38;;29501:13;;;;;;;;;;:23;;;;;;29549:26;;1848:25:1;;;29501:13:0;;29549:26;;1821:18:1;29549:26:0;;;;;;;29588:37;40460:403;48141:1677;48224:4;48180:23;24738:18;;;;;;;;;;;48180:50;;48241:25;48329:12;;48299:18;;48269;;:48;;;;:::i;:::-;:72;;;;:::i;:::-;48241:100;-1:-1:-1;48352:12:0;48381:20;;;:46;;-1:-1:-1;48405:22:0;;48381:46;48377:85;;;48444:7;;;48141:1677::o;48377:85::-;48496:18;;48478:15;:36;48474:105;;;48549:18;;48531:36;;48474:105;48591:23;48696:1;48667:17;48636:18;;48618:15;:36;;;;:::i;:::-;48617:67;;;;:::i;:::-;:80;;;;:::i;:::-;48591:106;-1:-1:-1;48708:26:0;48737:36;:15;48591:106;48737:19;:36::i;:::-;48708:65;-1:-1:-1;48814:21:0;48848:36;48708:65;48848:16;:36::i;:::-;48897:18;48918:44;:21;48944:17;48918:25;:44::i;:::-;48897:65;;48975:23;49001:81;49054:17;49001:34;49016:18;;49001:10;:14;;:34;;;;:::i;:81::-;48975:107;;49093:17;49113:51;49146:17;49113:28;49128:12;;49113:10;:14;;:28;;;;:::i;:51::-;49093:71;-1:-1:-1;49177:23:0;49093:71;49203:28;49216:15;49203:10;:28;:::i;:::-;:40;;;;:::i;:::-;49277:1;49256:18;:22;;;49289:18;:22;;;49322:12;:16;;;49372:9;;49364:46;;49177:66;;-1:-1:-1;;;;;;49372:9:0;;49396;;49364:46;49277:1;49364:46;49396:9;49372;49364:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49351:59:0;;-1:-1:-1;;49427:19:0;;;;;:42;;;49468:1;49450:15;:19;49427:42;49423:278;;;49486:46;49499:15;49516;49486:12;:46::i;:::-;49656:18;;49552:137;;;16046:25:1;;;16102:2;16087:18;;16080:34;;;16130:18;;;16123:34;;;;49552:137:0;;;;;;16034:2:1;49552:137:0;;;49423:278;49734:15;;49726:84;;-1:-1:-1;;;;;49734:15:0;;;;49774:21;;49726:84;;;;49774:21;49734:15;49726:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;48141:1677:0:o;50389:558::-;50480:15;50463:14;:32;50539:29;;-1:-1:-1;;;50539:29:0;;-1:-1:-1;;;;;50554:13:0;1658:32:1;50539:29:0;;;1640:51:1;50446:4:0;;;;50539;;:14;;1613:18:1;;50539:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50508:60;;50581:20;50604:77;50665:5;50604:42;50629:16;;50604:20;:24;;:42;;;;:::i;:77::-;50581:100;-1:-1:-1;50698:16:0;;50694:110;;50731:61;50747:13;50770:6;50779:12;50731:15;:61::i;:::-;50816:19;50853:13;50816:51;;50878:4;-1:-1:-1;;;;;50878:9:0;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;50905:12:0;;;;-1:-1:-1;50905:12:0;;-1:-1:-1;50905:12:0;50935:4;50928:11;;;;;50389:558;:::o;9161:98::-;9219:7;9246:5;9250:1;9246;:5;:::i;47167:475::-;47257:16;;;47271:1;47257:16;;;;;;;;47233:21;;47257:16;;;;;;;;;;-1:-1:-1;47257:16:0;47233:40;;47302:4;47284;47289:1;47284:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;47284:23:0;;;-1:-1:-1;;;;;47284:23:0;;;;;47328:15;-1:-1:-1;;;;;47328:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47318:4;47323:1;47318:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;47318:32:0;;;-1:-1:-1;;;;;47318:32:0;;;;;47363:62;47380:4;47395:15;47413:11;47363:8;:62::i;:::-;47438:196;;-1:-1:-1;;;47438:196:0;;-1:-1:-1;;;;;47438:15:0;:66;;;;:196;;47519:11;;47545:1;;47561:4;;47588;;47608:15;;47438:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47222:420;47167:475;:::o;47766:367::-;47847:62;47864:4;47879:15;47897:11;47847:8;:62::i;:::-;47922:203;;-1:-1:-1;;;47922:203:0;;47995:4;47922:203;;;18014:34:1;18064:18;;;18057:34;;;48041:1:0;18107:18:1;;;18100:34;;;18150:18;;;18143:34;34669:6:0;18193:19:1;;;18186:44;48099:15:0;18246:19:1;;;18239:35;47922:15:0;-1:-1:-1;;;;;47922:31:0;;;;47962:9;;17948:19:1;;47922:203:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47766:367;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:160::-;2992:20;;3048:13;;3041:21;3031:32;;3021:60;;3077:1;3074;3067:12;3092:316;3166:6;3174;3182;3235:2;3223:9;3214:7;3210:23;3206:32;3203:52;;;3251:1;3248;3241:12;3203:52;3287:9;3274:23;3264:33;;3344:2;3333:9;3329:18;3316:32;3306:42;;3367:35;3398:2;3387:9;3383:18;3367:35;:::i;:::-;3357:45;;3092:316;;;;;:::o;3413:315::-;3478:6;3486;3539:2;3527:9;3518:7;3514:23;3510:32;3507:52;;;3555:1;3552;3545:12;3507:52;3594:9;3581:23;3613:31;3638:5;3613:31;:::i;:::-;3663:5;-1:-1:-1;3687:35:1;3718:2;3703:18;;3687:35;:::i;:::-;3677:45;;3413:315;;;;;:::o;3733:316::-;3810:6;3818;3826;3879:2;3867:9;3858:7;3854:23;3850:32;3847:52;;;3895:1;3892;3885:12;3847:52;-1:-1:-1;;3918:23:1;;;3988:2;3973:18;;3960:32;;-1:-1:-1;4039:2:1;4024:18;;;4011:32;;3733:316;-1:-1:-1;3733:316:1:o;4054:180::-;4110:6;4163:2;4151:9;4142:7;4138:23;4134:32;4131:52;;;4179:1;4176;4169:12;4131:52;4202:26;4218:9;4202:26;:::i;4239:388::-;4307:6;4315;4368:2;4356:9;4347:7;4343:23;4339:32;4336:52;;;4384:1;4381;4374:12;4336:52;4423:9;4410:23;4442:31;4467:5;4442:31;:::i;:::-;4492:5;-1:-1:-1;4549:2:1;4534:18;;4521:32;4562:33;4521:32;4562:33;:::i;:::-;4614:7;4604:17;;;4239:388;;;;;:::o;4632:380::-;4711:1;4707:12;;;;4754;;;4775:61;;4829:4;4821:6;4817:17;4807:27;;4775:61;4882:2;4874:6;4871:14;4851:18;4848:38;4845:161;;4928:10;4923:3;4919:20;4916:1;4909:31;4963:4;4960:1;4953:15;4991:4;4988:1;4981:15;4845:161;;4632:380;;;:::o;5017:127::-;5078:10;5073:3;5069:20;5066:1;5059:31;5109:4;5106:1;5099:15;5133:4;5130:1;5123:15;5149:168;5222:9;;;5253;;5270:15;;;5264:22;;5250:37;5240:71;;5291:18;;:::i;5322:217::-;5362:1;5388;5378:132;;5432:10;5427:3;5423:20;5420:1;5413:31;5467:4;5464:1;5457:15;5495:4;5492:1;5485:15;5378:132;-1:-1:-1;5524:9:1;;5322:217::o;5960:125::-;6025:9;;;6046:10;;;6043:36;;;6059:18;;:::i;10542:184::-;10612:6;10665:2;10653:9;10644:7;10640:23;10636:32;10633:52;;;10681:1;10678;10671:12;10633:52;-1:-1:-1;10704:16:1;;10542:184;-1:-1:-1;10542:184:1:o;12258:401::-;12460:2;12442:21;;;12499:2;12479:18;;;12472:30;12538:34;12533:2;12518:18;;12511:62;-1:-1:-1;;;12604:2:1;12589:18;;12582:35;12649:3;12634:19;;12258:401::o;12664:399::-;12866:2;12848:21;;;12905:2;12885:18;;;12878:30;12944:34;12939:2;12924:18;;12917:62;-1:-1:-1;;;13010:2:1;12995:18;;12988:33;13053:3;13038:19;;12664:399::o;15094:128::-;15161:9;;;15182:11;;;15179:37;;;15196:18;;:::i;16300:127::-;16361:10;16356:3;16352:20;16349:1;16342:31;16392:4;16389:1;16382:15;16416:4;16413:1;16406:15;16432:251;16502:6;16555:2;16543:9;16534:7;16530:23;16526:32;16523:52;;;16571:1;16568;16561:12;16523:52;16603:9;16597:16;16622:31;16647:5;16622:31;:::i;16688:980::-;16950:4;16998:3;16987:9;16983:19;17029:6;17018:9;17011:25;17055:2;17093:6;17088:2;17077:9;17073:18;17066:34;17136:3;17131:2;17120:9;17116:18;17109:31;17160:6;17195;17189:13;17226:6;17218;17211:22;17264:3;17253:9;17249:19;17242:26;;17303:2;17295:6;17291:15;17277:29;;17324:1;17334:195;17348:6;17345:1;17342:13;17334:195;;;17413:13;;-1:-1:-1;;;;;17409:39:1;17397:52;;17504:15;;;;17469:12;;;;17445:1;17363:9;17334:195;;;-1:-1:-1;;;;;;;17585:32:1;;;;17580:2;17565:18;;17558:60;-1:-1:-1;;;17649:3:1;17634:19;17627:35;17546:3;16688:980;-1:-1:-1;;;16688:980:1:o;18285:306::-;18373:6;18381;18389;18442:2;18430:9;18421:7;18417:23;18413:32;18410:52;;;18458:1;18455;18448:12;18410:52;18487:9;18481:16;18471:26;;18537:2;18526:9;18522:18;18516:25;18506:35;;18581:2;18570:9;18566:18;18560:25;18550:35;;18285:306;;;;;:::o
Swarm Source
ipfs://01634819990633a3fed7623f3d063edd602a700999e68b1972beeab569090749
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.