Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 BABA
Holders
72
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,064,441.316371236588090987 BABAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Baba
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-25 */ /* * SPDX-License-Identifier: MIT * https://baba.wtf/ * https://t.me/baba_eth * https://x.com/babaerc */ pragma solidity 0.8.19; 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 substraction 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 IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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 upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][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 upd 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } 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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } } interface IDexFactory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IDexPair { function sync() external; } interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Baba is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable uniRouter; address public immutable uniPair; // Swapback bool private swapping; bool private swapbEnabled = false; uint256 private minSwapback; uint256 private maxSwapback; //Anti-whale bool private limitsInEffect = true; bool private transferDelayEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private mktWallet; address private devWallet; uint256 private totalBuyFee; uint256 private buyMktFee; uint256 private buyDevFee; uint256 private totalSellFee; uint256 private sellMktFee; uint256 private sellDevFee; uint256 private tokensForMarketing; uint256 private tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private isFeeExempt; mapping(address => bool) private isTxLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 minSwapback, uint256 maxSwapback ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event mktWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event BuyFeeUpdated( uint256 totalBuyFee, uint256 buyMktFee, uint256 buyDevFee ); event SellFeeUpdated( uint256 totalSellFee, uint256 sellMktFee, uint256 sellDevFee ); constructor() ERC20(unicode"Köksal Baba", "BABA") { IDexRouter _uniRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); limitWL(address(_uniRouter), true); uniRouter = _uniRouter; uniPair = IDexFactory(_uniRouter.factory()).createPair( address(this), _uniRouter.WETH() ); limitWL(address(uniPair), true); _setAsPair(address(uniPair), true); uint256 _buyMktFee = 20; uint256 _buyDevFee = 0; uint256 _sellMktFee = 40; uint256 _sellDevFee = 0; uint256 totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (totalSupply * 10) / 1000; maxWallet = (totalSupply * 10) / 1000; minSwapback = (totalSupply * 1) / 1000; maxSwapback = (totalSupply * 1) / 100; buyMktFee = _buyMktFee; buyDevFee = _buyDevFee; totalBuyFee = buyMktFee + buyDevFee; sellMktFee = _sellMktFee; sellDevFee = _sellDevFee; totalSellFee = sellMktFee + sellDevFee; mktWallet = address(0xB5D473F8F406538b32467c6c4A103326DDea9f90); devWallet = address(msg.sender); // exclude from paying fees or having max transaction amount feeWL(msg.sender, true); feeWL(address(this), true); feeWL(address(0xdead), true); limitWL(msg.sender, true); limitWL(address(this), true); limitWL(address(0xdead), true); transferOwnership(msg.sender); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } function decimals() public view virtual override returns (uint8) { return 18; } /** * @notice Information about the swapback settings * @return _swapbEnabled if swapback is enabled * @return _minSwapback the minimum amount of tokens in the contract balance to trigger swapback * @return _maxSwapback the maximum amount of tokens in the contract balance to trigger swapback */ function swapbInfo() external view returns ( bool _swapbEnabled, uint256 _minSwapback, uint256 _maxSwapback ) { _swapbEnabled = swapbEnabled; _minSwapback = minSwapback; _maxSwapback = maxSwapback; } /** * @notice Information about the anti whale parameters * @return _limitsInEffect if the wallet limits are in effect * @return _transferDelayEnabled if the transfer delay is enabled * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function limits() external view returns ( bool _limitsInEffect, bool _transferDelayEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsInEffect = limitsInEffect; _transferDelayEnabled = transferDelayEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _mktWallet The wallet that receives the marketing fees * @return _devWallet The wallet that receives the dev fees */ function feeWalletss() external view returns ( address _mktWallet, address _devWallet ) { return (mktWallet, devWallet); } /** * @notice Fees for buys, sells, and transfers * @return _totalBuyFee The total fee for buys * @return _buyMktFee The fee for buys that gets sent to marketing * @return _buyDevFee The fee for buys that gets sent to dev * @return _totalSellFee The total fee for sells * @return _sellMktFee The fee for sells that gets sent to marketing * @return _sellDevFee The fee for sells that gets sent to dev */ function feeRates() external view returns ( uint256 _totalBuyFee, uint256 _buyMktFee, uint256 _buyDevFee, uint256 _totalSellFee, uint256 _sellMktFee, uint256 _sellDevFee ) { _totalBuyFee = totalBuyFee; _buyMktFee = buyMktFee; _buyDevFee = buyDevFee; _totalSellFee = totalSellFee; _sellMktFee = sellMktFee; _sellDevFee = sellDevFee; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _isFeeExempt If the wallet is excluded from fees * @return _isTxLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function checkAddressPermissions( address _target ) external view returns ( bool _isFeeExempt, bool _isTxLimitExempt, bool _automatedMarketMakerPairs ) { _isFeeExempt = isFeeExempt[_target]; _isTxLimitExempt = isTxLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } receive() external payable {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openToPublic() external onlyOwner { tradingEnabled = true; swapbEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function removeLimits() external onlyOwner { limitsInEffect = false; emit LimitsRemoved(block.timestamp); } /** * @notice Removes the transfer delay * @dev onlyOwner. * Emits an {DisabledTransferDelay} event */ function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; emit DisabledTransferDelay(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enabled If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function setSwapBackSettings( bool _enabled, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbEnabled = _enabled; minSwapback = (totalSupply() * _min) / 10000; maxSwapback = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enabled, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setMaxTx(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newNum * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newNum Base 1000, so 1% = 10 */ function setMaxWallet(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newNum * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function limitWL( address updAds, bool isEx ) public onlyOwner { isTxLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setBuyFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMktFee = _marketingFee; buyDevFee = _devFee; totalBuyFee = buyMktFee + buyDevFee; require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setSellFees( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMktFee = _marketingFee; sellDevFee = _devFee; totalSellFee = sellMktFee + sellDevFee; require( totalSellFee <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function feeWL(address account, bool excluded) public onlyOwner { isFeeExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAsPair( address pair, bool value ) public onlyOwner { require( pair != uniPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAsPair(pair, value); } function _setAsPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {mktWalletUpdated} event * @param newWallet The new marketing wallet */ function setMarketingWallet(address newWallet) external onlyOwner { emit mktWalletUpdated(newWallet, mktWallet); mktWallet = newWallet; } /** * @notice Sets the dev wallet * @dev onlyOwner. * Emits an {devWalletUpdated} event * @param newWallet The new dev wallet */ function setDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } 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 (!tradingEnabled) { require( isFeeExempt[from] || isFeeExempt[to], "_transfer:: Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniRouter) && to != address(uniPair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !isTxLimitExempt[to]) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !isTxLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!isTxLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= minSwapback; if ( canSwap && swapbEnabled && !swapping && !automatedMarketMakerPairs[from] && !isFeeExempt[from] && !isFeeExempt[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (isFeeExempt[from] || isFeeExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && totalSellFee > 0) { fees = amount.mul(totalSellFee).div(100); tokensForDev += (fees * sellDevFee) / totalSellFee; tokensForMarketing += (fees * sellMktFee) / totalSellFee; } // on buy else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) { fees = amount.mul(totalBuyFee).div(100); tokensForDev += (fees * buyDevFee) / totalBuyFee; tokensForMarketing += (fees * buyMktFee) / totalBuyFee; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniRouter.WETH(); _approve(address(this), address(uniRouter), tokenAmount); // make the swap uniRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > maxSwapback) { contractBalance = maxSwapback; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); (success, ) = address(mktWallet).call{value: address(this).balance}( "" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","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":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"minSwapback","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"maxSwapback","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":"mktWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkAddressPermissions","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"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":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeRates","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"feeWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeWalletss","outputs":[{"internalType":"address","name":"_mktWallet","type":"address"},{"internalType":"address","name":"_devWallet","type":"address"}],"stateMutability":"view","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":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"limitWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limits","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openToPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAsPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setSwapBackSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbInfo","outputs":[{"internalType":"bool","name":"_swapbEnabled","type":"bool"},{"internalType":"uint256","name":"_minSwapback","type":"uint256"},{"internalType":"uint256","name":"_maxSwapback","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600c805460ff191690553480156200003757600080fd5b506040518060400160405280600d81526020016c4b6fcc886b73616c204261626160981b815250604051806040016040528060048152602001634241424160e01b81525081600390816200008c919062000834565b5060046200009b828262000834565b505050620000b8620000b2620003e960201b60201c565b620003ed565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000da8160016200043f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000125573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014b919062000900565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000199573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bf919062000900565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000233919062000900565b6001600160a01b031660a08190526200024e9060016200043f565b60a0516200025e906001620004ee565b6014600060288180620002746012600a62000a47565b6200028490633b9aca0062000a58565b90506103e86200029682600a62000a58565b620002a2919062000a72565b600a9081556103e890620002b890839062000a58565b620002c4919062000a72565b6009556103e8620002d782600162000a58565b620002e3919062000a72565b6006556064620002f582600162000a58565b62000301919062000a72565b600755600f85905560108490556200031a848662000a95565b600e556012839055601382905562000333828462000a95565b601155600c8054610100600160a81b03191674b5d473f8f406538b32467c6c4a103326ddea9f9000179055600d8054336001600160a01b031990911681179091556200038190600162000542565b6200038e30600162000542565b6200039d61dead600162000542565b620003aa3360016200043f565b620003b73060016200043f565b620003c661dead60016200043f565b620003d133620005e6565b620003dd3382620006a6565b50505050505062000aab565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200048e5760405162461bcd60e51b815260206004820181905260248201526000805160206200312983398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200058d5760405162461bcd60e51b8152602060048201819052602482015260008051602062003129833981519152604482015260640162000485565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101620004e2565b6005546001600160a01b03163314620006315760405162461bcd60e51b8152602060048201819052602482015260008051602062003129833981519152604482015260640162000485565b6001600160a01b038116620006985760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840162000485565b620006a381620003ed565b50565b6001600160a01b038216620006fe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000485565b806002600082825462000712919062000a95565b90915550506001600160a01b038216600090815260208190526040812080548392906200074190849062000a95565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007bb57607f821691505b602082108103620007dc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200078b57600081815260208120601f850160051c810160208610156200080b5750805b601f850160051c820191505b818110156200082c5782815560010162000817565b505050505050565b81516001600160401b0381111562000850576200085062000790565b6200086881620008618454620007a6565b84620007e2565b602080601f831160018114620008a05760008415620008875750858301515b600019600386901b1c1916600185901b1785556200082c565b600085815260208120601f198616915b82811015620008d157888601518255948401946001909101908401620008b0565b5085821015620008f05787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200091357600080fd5b81516001600160a01b03811681146200092b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009895781600019048211156200096d576200096d62000932565b808516156200097b57918102915b93841c93908002906200094d565b509250929050565b600082620009a25750600162000a41565b81620009b15750600062000a41565b8160018114620009ca5760028114620009d557620009f5565b600191505062000a41565b60ff841115620009e957620009e962000932565b50506001821b62000a41565b5060208310610133831016604e8410600b841016171562000a1a575081810a62000a41565b62000a26838362000948565b806000190482111562000a3d5762000a3d62000932565b0290505b92915050565b60006200092b60ff84168362000991565b808202811582820484141762000a415762000a4162000932565b60008262000a9057634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a415762000a4162000932565b60805160a05161263562000af4600039600081816103da015281816112a701526117040152600081816116c60152818161209c01528181612155015261219101526126356000f3fe6080604052600436106101fd5760003560e01c8063715018a61161010d578063a9059cbb116100a0578063d08893581161006f578063d0889358146106b0578063dd62ed3e146106d0578063e884f26014610716578063ee87ee071461072b578063f2fde38b1461074b57600080fd5b8063a9059cbb14610618578063b2d8f20814610638578063bc33718214610658578063c340a7641461067857600080fd5b80638da5cb5b116100dc5780638da5cb5b146105a557806395d89b41146105c35780639fd8234e146105d8578063a457c2d7146105f857600080fd5b8063715018a6146104e4578063751039fc146104f95780637688c5841461050e578063860aefcf1461055a57600080fd5b80632ff8ef4d116101905780634ada218b1161015f5780634ada218b1461043457806357c64b281461044e5780635d0044ca1461046e5780635d098b381461048e57806370a08231146104ae57600080fd5b80632ff8ef4d1461038c578063313ce567146103ac57806332972e46146103c8578063395093511461041457600080fd5b80631831ccf2116101cc5780631831ccf2146102c25780631cffccf4146102d95780631f53ac021461034c57806323b872dd1461036c57600080fd5b806306fdde0314610209578063095ea7b31461023457806316ed2b7f1461026457806318160ddd146102a357600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e61076b565b60405161022b9190612211565b60405180910390f35b34801561024057600080fd5b5061025461024f366004612274565b6107fd565b604051901515815260200161022b565b34801561027057600080fd5b50600554600654600754600160a81b90920460ff169160408051931515845260208401929092529082015260600161022b565b3480156102af57600080fd5b506002545b60405190815260200161022b565b3480156102ce57600080fd5b506102d7610814565b005b3480156102e557600080fd5b5061032d6102f43660046122a0565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b34801561035857600080fd5b506102d76103673660046122a0565b610894565b34801561037857600080fd5b506102546103873660046122bd565b61091b565b34801561039857600080fd5b506102d76103a7366004612313565b6109c5565b3480156103b857600080fd5b506040516012815260200161022b565b3480156103d457600080fd5b506103fc7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161022b565b34801561042057600080fd5b5061025461042f366004612274565b610a4f565b34801561044057600080fd5b50600c546102549060ff1681565b34801561045a57600080fd5b506102d7610469366004612313565b610a8b565b34801561047a57600080fd5b506102d7610489366004612348565b610b0d565b34801561049a57600080fd5b506102d76104a93660046122a0565b610bf0565b3480156104ba57600080fd5b506102b46104c93660046122a0565b6001600160a01b031660009081526020819052604090205490565b3480156104f057600080fd5b506102d7610c82565b34801561050557600080fd5b506102d7610cb8565b34801561051a57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b34801561056657600080fd5b50610583600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161022b565b3480156105b157600080fd5b506005546001600160a01b03166103fc565b3480156105cf57600080fd5b5061021e610d19565b3480156105e457600080fd5b506102d76105f3366004612361565b610d28565b34801561060457600080fd5b50610254610613366004612274565b610e1b565b34801561062457600080fd5b50610254610633366004612274565b610eb4565b34801561064457600080fd5b506102d7610653366004612361565b610ec1565b34801561066457600080fd5b506102d7610673366004612348565b610fab565b34801561068457600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b3480156106bc57600080fd5b506102d76106cb366004612383565b61107b565b3480156106dc57600080fd5b506102b46106eb3660046123b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072257600080fd5b506102d7611219565b34801561073757600080fd5b506102d7610746366004612313565b61127b565b34801561075757600080fd5b506102d76107663660046122a0565b61135a565b60606003805461077a906123ef565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906123ef565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600061080a3384846113f5565b5060015b92915050565b6005546001600160a01b031633146108475760405162461bcd60e51b815260040161083e90612429565b60405180910390fd5b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146108be5760405162461bcd60e51b815260040161083e90612429565b600d546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610928848484611519565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161083e565b6109ba85338584036113f5565b506001949350505050565b6005546001600160a01b031633146109ef5760405162461bcd60e51b815260040161083e90612429565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080a918590610a86908690612474565b6113f5565b6005546001600160a01b03163314610ab55760405162461bcd60e51b815260040161083e90612429565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610a43565b6005546001600160a01b03163314610b375760405162461bcd60e51b815260040161083e90612429565b6005811015610b945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161083e565b6103e8610ba060025490565b610baa9083612487565b610bb4919061249e565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161083e90612429565b600c546040516001600160a01b036101009092048216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd004890600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cac5760405162461bcd60e51b815260040161083e90612429565b610cb66000611d05565b565b6005546001600160a01b03163314610ce25760405162461bcd60e51b815260040161083e90612429565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b60606004805461077a906123ef565b6005546001600160a01b03163314610d525760405162461bcd60e51b815260040161083e90612429565b60128290556013819055610d668183612474565b601181905560641015610dcd5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161083e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e9d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161083e565b610eaa33858584036113f5565b5060019392505050565b600061080a338484611519565b6005546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161083e90612429565b600f8290556010819055610eff8183612474565b600e81905560641015610f655760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161083e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610e0f565b6005546001600160a01b03163314610fd55760405162461bcd60e51b815260040161083e90612429565b60028110156110265760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161083e565b6103e861103260025490565b61103c9083612487565b611046919061249e565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610be5565b6005546001600160a01b031633146110a55760405162461bcd60e51b815260040161083e90612429565b60018210156111135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161083e565b818110156111765760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161083e565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111a09190612487565b6111aa919061249e565b600655612710816111ba60025490565b6111c49190612487565b6111ce919061249e565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112435760405162461bcd60e51b815260040161083e90612429565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146112a55760405162461bcd60e51b815260040161083e90612429565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03160361134c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161083e565b6113568282611d57565b5050565b6005546001600160a01b031633146113845760405162461bcd60e51b815260040161083e90612429565b6001600160a01b0381166113e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083e565b6113f281611d05565b50565b6001600160a01b0383166114575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161083e565b6001600160a01b0382166114b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161083e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153f5760405162461bcd60e51b815260040161083e906124c0565b6001600160a01b0382166115655760405162461bcd60e51b815260040161083e90612505565b8060000361157e5761157983836000611dab565b505050565b60085460ff1615611a2f576005546001600160a01b038481169116148015906115b557506005546001600160a01b03838116911614155b80156115c957506001600160a01b03821615155b80156115e057506001600160a01b03821661dead14155b80156115f65750600554600160a01b900460ff16155b15611a2f57600c5460ff1661169b576001600160a01b03831660009081526016602052604090205460ff168061164457506001600160a01b03821660009081526016602052604090205460ff165b61169b5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161083e565b600854610100900460ff16156117e7576005546001600160a01b038381169116148015906116fb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561173957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156117e757326000908152600b602052604090205443116117d45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161083e565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff16801561182857506001600160a01b03821660009081526017602052604090205460ff16155b156118fd57600a5481111561188e5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161083e565b6009546001600160a01b0383166000908152602081905260409020546118b49083612474565b11156118f85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161083e565b611a2f565b6001600160a01b03821660009081526018602052604090205460ff16801561193e57506001600160a01b03831660009081526017602052604090205460ff16155b156119a557600a548111156118f85760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161083e565b6001600160a01b03821660009081526017602052604090205460ff16611a2f576009546001600160a01b0383166000908152602081905260409020546119eb9083612474565b1115611a2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161083e565b3060009081526020819052604090205460065481108015908190611a5c5750600554600160a81b900460ff165b8015611a725750600554600160a01b900460ff16155b8015611a9757506001600160a01b03851660009081526018602052604090205460ff16155b8015611abc57506001600160a01b03851660009081526016602052604090205460ff16155b8015611ae157506001600160a01b03841660009081526016602052604090205460ff16155b15611b0f576005805460ff60a01b1916600160a01b179055611b01611f00565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611b5d57506001600160a01b03851660009081526016602052604090205460ff165b15611b66575060005b60008115611cf1576001600160a01b03861660009081526018602052604090205460ff168015611b9857506000601154115b15611c2657611bbd6064611bb76011548861202690919063ffffffff16565b90612039565b905060115460135482611bd09190612487565b611bda919061249e565b60156000828254611beb9190612474565b9091555050601154601254611c009083612487565b611c0a919061249e565b60146000828254611c1b9190612474565b90915550611cd39050565b6001600160a01b03871660009081526018602052604090205460ff168015611c5057506000600e54115b15611cd357611c6f6064611bb7600e548861202690919063ffffffff16565b9050600e5460105482611c829190612487565b611c8c919061249e565b60156000828254611c9d9190612474565b9091555050600e54600f54611cb29083612487565b611cbc919061249e565b60146000828254611ccd9190612474565b90915550505b8015611ce457611ce4873083611dab565b611cee8186612548565b94505b611cfc878787611dab565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611dd15760405162461bcd60e51b815260040161083e906124c0565b6001600160a01b038216611df75760405162461bcd60e51b815260040161083e90612505565b6001600160a01b03831660009081526020819052604090205481811015611e6f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161083e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea6908490612474565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef291815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f1f57505050565b600754831115611f2f5760075492505b8247611f3a82612045565b6000611f464783612205565b90506000611f6386611bb76015548561202690919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612015576040519150601f19603f3d011682016040523d82523d6000602084013e61201a565b606091505b50505050505050505050565b60006120328284612487565b9392505050565b6000612032828461249e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061207a5761207a61255b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211c9190612571565b8160018151811061212f5761212f61255b565b60200260200101906001600160a01b031690816001600160a01b03168152505061217a307f0000000000000000000000000000000000000000000000000000000000000000846113f5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906121cf90859060009086903090429060040161258e565b600060405180830381600087803b1580156121e957600080fd5b505af11580156121fd573d6000803e3d6000fd5b505050505050565b60006120328284612548565b600060208083528351808285015260005b8181101561223e57858101830151858201604001528201612222565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113f257600080fd5b6000806040838503121561228757600080fd5b82356122928161225f565b946020939093013593505050565b6000602082840312156122b257600080fd5b81356120328161225f565b6000806000606084860312156122d257600080fd5b83356122dd8161225f565b925060208401356122ed8161225f565b929592945050506040919091013590565b8035801515811461230e57600080fd5b919050565b6000806040838503121561232657600080fd5b82356123318161225f565b915061233f602084016122fe565b90509250929050565b60006020828403121561235a57600080fd5b5035919050565b6000806040838503121561237457600080fd5b50508035926020909101359150565b60008060006060848603121561239857600080fd5b6123a1846122fe565b95602085013595506040909401359392505050565b600080604083850312156123c957600080fd5b82356123d48161225f565b915060208301356123e48161225f565b809150509250929050565b600181811c9082168061240357607f821691505b60208210810361242357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561080e5761080e61245e565b808202811582820484141761080e5761080e61245e565b6000826124bb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561080e5761080e61245e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561258357600080fd5b81516120328161225f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125de5784516001600160a01b0316835293830193918301916001016125b9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e0c7b7c93549d80bca691b34ea1fa439e8bc8abab2f53d6d0a0628f6385ceac964736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c8063715018a61161010d578063a9059cbb116100a0578063d08893581161006f578063d0889358146106b0578063dd62ed3e146106d0578063e884f26014610716578063ee87ee071461072b578063f2fde38b1461074b57600080fd5b8063a9059cbb14610618578063b2d8f20814610638578063bc33718214610658578063c340a7641461067857600080fd5b80638da5cb5b116100dc5780638da5cb5b146105a557806395d89b41146105c35780639fd8234e146105d8578063a457c2d7146105f857600080fd5b8063715018a6146104e4578063751039fc146104f95780637688c5841461050e578063860aefcf1461055a57600080fd5b80632ff8ef4d116101905780634ada218b1161015f5780634ada218b1461043457806357c64b281461044e5780635d0044ca1461046e5780635d098b381461048e57806370a08231146104ae57600080fd5b80632ff8ef4d1461038c578063313ce567146103ac57806332972e46146103c8578063395093511461041457600080fd5b80631831ccf2116101cc5780631831ccf2146102c25780631cffccf4146102d95780631f53ac021461034c57806323b872dd1461036c57600080fd5b806306fdde0314610209578063095ea7b31461023457806316ed2b7f1461026457806318160ddd146102a357600080fd5b3661020457005b600080fd5b34801561021557600080fd5b5061021e61076b565b60405161022b9190612211565b60405180910390f35b34801561024057600080fd5b5061025461024f366004612274565b6107fd565b604051901515815260200161022b565b34801561027057600080fd5b50600554600654600754600160a81b90920460ff169160408051931515845260208401929092529082015260600161022b565b3480156102af57600080fd5b506002545b60405190815260200161022b565b3480156102ce57600080fd5b506102d7610814565b005b3480156102e557600080fd5b5061032d6102f43660046122a0565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161022b565b34801561035857600080fd5b506102d76103673660046122a0565b610894565b34801561037857600080fd5b506102546103873660046122bd565b61091b565b34801561039857600080fd5b506102d76103a7366004612313565b6109c5565b3480156103b857600080fd5b506040516012815260200161022b565b3480156103d457600080fd5b506103fc7f0000000000000000000000009e6bb19873a5cf1de40bfb65cfd8a5c8df4d954781565b6040516001600160a01b03909116815260200161022b565b34801561042057600080fd5b5061025461042f366004612274565b610a4f565b34801561044057600080fd5b50600c546102549060ff1681565b34801561045a57600080fd5b506102d7610469366004612313565b610a8b565b34801561047a57600080fd5b506102d7610489366004612348565b610b0d565b34801561049a57600080fd5b506102d76104a93660046122a0565b610bf0565b3480156104ba57600080fd5b506102b46104c93660046122a0565b6001600160a01b031660009081526020819052604090205490565b3480156104f057600080fd5b506102d7610c82565b34801561050557600080fd5b506102d7610cb8565b34801561051a57600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161022b565b34801561056657600080fd5b50610583600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161022b565b3480156105b157600080fd5b506005546001600160a01b03166103fc565b3480156105cf57600080fd5b5061021e610d19565b3480156105e457600080fd5b506102d76105f3366004612361565b610d28565b34801561060457600080fd5b50610254610613366004612274565b610e1b565b34801561062457600080fd5b50610254610633366004612274565b610eb4565b34801561064457600080fd5b506102d7610653366004612361565b610ec1565b34801561066457600080fd5b506102d7610673366004612348565b610fab565b34801561068457600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161022b565b3480156106bc57600080fd5b506102d76106cb366004612383565b61107b565b3480156106dc57600080fd5b506102b46106eb3660046123b6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561072257600080fd5b506102d7611219565b34801561073757600080fd5b506102d7610746366004612313565b61127b565b34801561075757600080fd5b506102d76107663660046122a0565b61135a565b60606003805461077a906123ef565b80601f01602080910402602001604051908101604052809291908181526020018280546107a6906123ef565b80156107f35780601f106107c8576101008083540402835291602001916107f3565b820191906000526020600020905b8154815290600101906020018083116107d657829003601f168201915b5050505050905090565b600061080a3384846113f5565b5060015b92915050565b6005546001600160a01b031633146108475760405162461bcd60e51b815260040161083e90612429565b60405180910390fd5b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b031633146108be5760405162461bcd60e51b815260040161083e90612429565b600d546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610928848484611519565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109ad5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161083e565b6109ba85338584036113f5565b506001949350505050565b6005546001600160a01b031633146109ef5760405162461bcd60e51b815260040161083e90612429565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161080a918590610a86908690612474565b6113f5565b6005546001600160a01b03163314610ab55760405162461bcd60e51b815260040161083e90612429565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610a43565b6005546001600160a01b03163314610b375760405162461bcd60e51b815260040161083e90612429565b6005811015610b945760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161083e565b6103e8610ba060025490565b610baa9083612487565b610bb4919061249e565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6005546001600160a01b03163314610c1a5760405162461bcd60e51b815260040161083e90612429565b600c546040516001600160a01b036101009092048216918316907fe398a51ced37c654eb1ea08be0948c549e0001c9574663816242517334bd004890600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b03163314610cac5760405162461bcd60e51b815260040161083e90612429565b610cb66000611d05565b565b6005546001600160a01b03163314610ce25760405162461bcd60e51b815260040161083e90612429565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b60606004805461077a906123ef565b6005546001600160a01b03163314610d525760405162461bcd60e51b815260040161083e90612429565b60128290556013819055610d668183612474565b601181905560641015610dcd5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161083e565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060015b60405180910390a15050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e9d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161083e565b610eaa33858584036113f5565b5060019392505050565b600061080a338484611519565b6005546001600160a01b03163314610eeb5760405162461bcd60e51b815260040161083e90612429565b600f8290556010819055610eff8183612474565b600e81905560641015610f655760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161083e565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e90606001610e0f565b6005546001600160a01b03163314610fd55760405162461bcd60e51b815260040161083e90612429565b60028110156110265760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161083e565b6103e861103260025490565b61103c9083612487565b611046919061249e565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610be5565b6005546001600160a01b031633146110a55760405162461bcd60e51b815260040161083e90612429565b60018210156111135760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161083e565b818110156111765760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161083e565b6005805460ff60a81b1916600160a81b851515021790556002546127109083906111a09190612487565b6111aa919061249e565b600655612710816111ba60025490565b6111c49190612487565b6111ce919061249e565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112435760405162461bcd60e51b815260040161083e90612429565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b031633146112a55760405162461bcd60e51b815260040161083e90612429565b7f0000000000000000000000009e6bb19873a5cf1de40bfb65cfd8a5c8df4d95476001600160a01b0316826001600160a01b03160361134c5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161083e565b6113568282611d57565b5050565b6005546001600160a01b031633146113845760405162461bcd60e51b815260040161083e90612429565b6001600160a01b0381166113e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083e565b6113f281611d05565b50565b6001600160a01b0383166114575760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161083e565b6001600160a01b0382166114b85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161083e565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661153f5760405162461bcd60e51b815260040161083e906124c0565b6001600160a01b0382166115655760405162461bcd60e51b815260040161083e90612505565b8060000361157e5761157983836000611dab565b505050565b60085460ff1615611a2f576005546001600160a01b038481169116148015906115b557506005546001600160a01b03838116911614155b80156115c957506001600160a01b03821615155b80156115e057506001600160a01b03821661dead14155b80156115f65750600554600160a01b900460ff16155b15611a2f57600c5460ff1661169b576001600160a01b03831660009081526016602052604090205460ff168061164457506001600160a01b03821660009081526016602052604090205460ff165b61169b5760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161083e565b600854610100900460ff16156117e7576005546001600160a01b038381169116148015906116fb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561173957507f0000000000000000000000009e6bb19873a5cf1de40bfb65cfd8a5c8df4d95476001600160a01b0316826001600160a01b031614155b156117e757326000908152600b602052604090205443116117d45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161083e565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff16801561182857506001600160a01b03821660009081526017602052604090205460ff16155b156118fd57600a5481111561188e5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161083e565b6009546001600160a01b0383166000908152602081905260409020546118b49083612474565b11156118f85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161083e565b611a2f565b6001600160a01b03821660009081526018602052604090205460ff16801561193e57506001600160a01b03831660009081526017602052604090205460ff16155b156119a557600a548111156118f85760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161083e565b6001600160a01b03821660009081526017602052604090205460ff16611a2f576009546001600160a01b0383166000908152602081905260409020546119eb9083612474565b1115611a2f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161083e565b3060009081526020819052604090205460065481108015908190611a5c5750600554600160a81b900460ff165b8015611a725750600554600160a01b900460ff16155b8015611a9757506001600160a01b03851660009081526018602052604090205460ff16155b8015611abc57506001600160a01b03851660009081526016602052604090205460ff16155b8015611ae157506001600160a01b03841660009081526016602052604090205460ff16155b15611b0f576005805460ff60a01b1916600160a01b179055611b01611f00565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611b5d57506001600160a01b03851660009081526016602052604090205460ff165b15611b66575060005b60008115611cf1576001600160a01b03861660009081526018602052604090205460ff168015611b9857506000601154115b15611c2657611bbd6064611bb76011548861202690919063ffffffff16565b90612039565b905060115460135482611bd09190612487565b611bda919061249e565b60156000828254611beb9190612474565b9091555050601154601254611c009083612487565b611c0a919061249e565b60146000828254611c1b9190612474565b90915550611cd39050565b6001600160a01b03871660009081526018602052604090205460ff168015611c5057506000600e54115b15611cd357611c6f6064611bb7600e548861202690919063ffffffff16565b9050600e5460105482611c829190612487565b611c8c919061249e565b60156000828254611c9d9190612474565b9091555050600e54600f54611cb29083612487565b611cbc919061249e565b60146000828254611ccd9190612474565b90915550505b8015611ce457611ce4873083611dab565b611cee8186612548565b94505b611cfc878787611dab565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611dd15760405162461bcd60e51b815260040161083e906124c0565b6001600160a01b038216611df75760405162461bcd60e51b815260040161083e90612505565b6001600160a01b03831660009081526020819052604090205481811015611e6f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161083e565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ea6908490612474565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ef291815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611f1f57505050565b600754831115611f2f5760075492505b8247611f3a82612045565b6000611f464783612205565b90506000611f6386611bb76015548561202690919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611fbb576040519150601f19603f3d011682016040523d82523d6000602084013e611fc0565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114612015576040519150601f19603f3d011682016040523d82523d6000602084013e61201a565b606091505b50505050505050505050565b60006120328284612487565b9392505050565b6000612032828461249e565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061207a5761207a61255b565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061211c9190612571565b8160018151811061212f5761212f61255b565b60200260200101906001600160a01b031690816001600160a01b03168152505061217a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113f5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906121cf90859060009086903090429060040161258e565b600060405180830381600087803b1580156121e957600080fd5b505af11580156121fd573d6000803e3d6000fd5b505050505050565b60006120328284612548565b600060208083528351808285015260005b8181101561223e57858101830151858201604001528201612222565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146113f257600080fd5b6000806040838503121561228757600080fd5b82356122928161225f565b946020939093013593505050565b6000602082840312156122b257600080fd5b81356120328161225f565b6000806000606084860312156122d257600080fd5b83356122dd8161225f565b925060208401356122ed8161225f565b929592945050506040919091013590565b8035801515811461230e57600080fd5b919050565b6000806040838503121561232657600080fd5b82356123318161225f565b915061233f602084016122fe565b90509250929050565b60006020828403121561235a57600080fd5b5035919050565b6000806040838503121561237457600080fd5b50508035926020909101359150565b60008060006060848603121561239857600080fd5b6123a1846122fe565b95602085013595506040909401359392505050565b600080604083850312156123c957600080fd5b82356123d48161225f565b915060208301356123e48161225f565b809150509250929050565b600181811c9082168061240357607f821691505b60208210810361242357634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561080e5761080e61245e565b808202811582820484141761080e5761080e61245e565b6000826124bb57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561080e5761080e61245e565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561258357600080fd5b81516120328161225f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125de5784516001600160a01b0316835293830193918301916001016125b9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e0c7b7c93549d80bca691b34ea1fa439e8bc8abab2f53d6d0a0628f6385ceac964736f6c63430008130033
Deployed Bytecode Sourcemap
25456:20601:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10996:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13229:194;;;;;;;;;;-1:-1:-1;13229:194:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;13229:194:0;1023:187:1;30424:311:0;;;;;;;;;;-1:-1:-1;30641:12:0;;30679:11;;30716;;-1:-1:-1;;;30641:12:0;;;;;;30424:311;;;1436:14:1;;1429:22;1411:41;;1483:2;1468:18;;1461:34;;;;1511:18;;;1504:34;1399:2;1384:18;30424:311:0;1215:329:1;12116:108:0;;;;;;;;;;-1:-1:-1;12204:12:0;;12116:108;;;1695:25:1;;;1683:2;1668:18;12116:108:0;1549:177:1;33963:160:0;;;;;;;;;;;;;:::i;:::-;;33392:428;;;;;;;;;;-1:-1:-1;33392:428:0;;;;;:::i;:::-;-1:-1:-1;;;;;33664:20:0;33522:17;33664:20;;;:11;:20;;;;;;;;;33714:15;:24;;;;;;33778:25;:34;;;;;;33664:20;;;;;33714:24;;;;33778:34;;33392:428;;;;;2192:14:1;;2185:22;2167:41;;2251:14;;2244:22;2239:2;2224:18;;2217:50;2310:14;2303:22;2283:18;;;2276:50;2155:2;2140:18;33392:428:0;1983:349:1;40091:154:0;;;;;;;;;;-1:-1:-1;40091:154:0;;;;;:::i;:::-;;:::i;13901:529::-;;;;;;;;;;-1:-1:-1;13901:529:0;;;;;:::i;:::-;;:::i;36862:182::-;;;;;;;;;;-1:-1:-1;36862:182:0;;;;;:::i;:::-;;:::i;29985:93::-;;;;;;;;;;-1:-1:-1;29985:93:0;;30068:2;3425:36:1;;3413:2;3398:18;29985:93:0;3283:184:1;25575:32:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3636:32:1;;;3618:51;;3606:2;3591:18;25575:32:0;3472:203:1;14835:290:0;;;;;;;;;;-1:-1:-1;14835:290:0;;;;;:::i;:::-;;:::i;26064:34::-;;;;;;;;;;-1:-1:-1;26064:34:0;;;;;;;;38658:164;;;;;;;;;;-1:-1:-1;38658:164:0;;;;;:::i;:::-;;:::i;36361:233::-;;;;;;;;;;-1:-1:-1;36361:233:0;;;;;:::i;:::-;;:::i;39759:160::-;;;;;;;;;;-1:-1:-1;39759:160:0;;;;;:::i;:::-;;:::i;12287:143::-;;;;;;;;;;-1:-1:-1;12287:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;12404:18:0;12377:7;12404:18;;;;;;;;;;;;12287:143;22335:103;;;;;;;;;;;;;:::i;34278:130::-;;;;;;;;;;;;;:::i;32431:511::-;;;;;;;;;;-1:-1:-1;32748:11:0;;32783:9;;32816;;32852:12;;32889:10;;32924;;32431:511;;;4152:25:1;;;4208:2;4193:18;;4186:34;;;;4236:18;;;4229:34;;;;4294:2;4279:18;;4272:34;4337:3;4322:19;;4315:35;4381:3;4366:19;;4359:35;4139:3;4124:19;32431:511:0;3865:535:1;31156:386:0;;;;;;;;;;;;31407:14;;31500:9;;31529:5;;31407:14;;;;;;31456:20;;;;;31156:386;;;;;4649:14:1;;4642:22;4624:41;;4708:14;;4701:22;4696:2;4681:18;;4674:50;4740:18;;;4733:34;4798:2;4783:18;;4776:34;4611:3;4596:19;31156:386:0;4405:411:1;21684:87:0;;;;;;;;;;-1:-1:-1;21757:6:0;;-1:-1:-1;;;;;21757:6:0;21684:87;;11215:104;;;;;;;;;;;;;:::i;37990:419::-;;;;;;;;;;-1:-1:-1;37990:419:0;;;;;:::i;:::-;;:::i;15624:475::-;;;;;;;;;;-1:-1:-1;15624:475:0;;;;;:::i;:::-;;:::i;12643:200::-;;;;;;;;;;-1:-1:-1;12643:200:0;;;;;:::i;:::-;;:::i;37331:370::-;;;;;;;;;;-1:-1:-1;37331:370:0;;;;;:::i;:::-;;:::i;35941:213::-;;;;;;;;;;-1:-1:-1;35941:213:0;;;;;:::i;:::-;;:::i;31764:203::-;;;;;;;;;;-1:-1:-1;31938:9:0;;31949;;31764:203;;;31938:9;;;;-1:-1:-1;;;;;31938:9:0;;;5286:34:1;;31949:9:0;;;5351:2:1;5336:18;;5329:43;5221:18;31764:203:0;5074:304:1;35165:540:0;;;;;;;;;;-1:-1:-1;35165:540:0;;;;;:::i;:::-;;:::i;12906:176::-;;;;;;;;;;-1:-1:-1;12906:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;13047:18:0;;;13020:7;13047:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12906:176;34548:152;;;;;;;;;;;;;:::i;39133:264::-;;;;;;;;;;-1:-1:-1;39133:264:0;;;;;:::i;:::-;;:::i;22593:238::-;;;;;;;;;;-1:-1:-1;22593:238:0;;;;;:::i;:::-;;:::i;10996:100::-;11050:13;11083:5;11076:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10996:100;:::o;13229:194::-;13337:4;13354:39;10082:10;13377:7;13386:6;13354:8;:39::i;:::-;-1:-1:-1;13411:4:0;13229:194;;;;;:::o;33963:160::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;;;;;;;;;34017:14:::1;:21:::0;;-1:-1:-1;;34017:21:0::1;34034:4;34017:21;::::0;;34049:12:::1;:19:::0;;-1:-1:-1;;;;34049:19:0::1;-1:-1:-1::0;;;34049:19:0::1;::::0;;34084:31:::1;::::0;34099:15:::1;::::0;34084:31:::1;::::0;34017:14:::1;::::0;34084:31:::1;33963:160::o:0;40091:154::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;40195:9:::1;::::0;40167:38:::1;::::0;-1:-1:-1;;;;;40195:9:0;;::::1;::::0;40167:38;::::1;::::0;::::1;::::0;40195:9:::1;::::0;40167:38:::1;40216:9;:21:::0;;-1:-1:-1;;;;;;40216:21:0::1;-1:-1:-1::0;;;;;40216:21:0;;;::::1;::::0;;;::::1;::::0;;40091:154::o;13901:529::-;14041:4;14058:36;14068:6;14076:9;14087:6;14058:9;:36::i;:::-;-1:-1:-1;;;;;14134:19:0;;14107:24;14134:19;;;:11;:19;;;;;;;;10082:10;14134:33;;;;;;;;14200:26;;;;14178:116;;;;-1:-1:-1;;;14178:116:0;;7045:2:1;14178:116:0;;;7027:21:1;7084:2;7064:18;;;7057:30;7123:34;7103:18;;;7096:62;-1:-1:-1;;;7174:18:1;;;7167:38;7222:19;;14178:116:0;6843:404:1;14178:116:0;14330:57;14339:6;10082:10;14380:6;14361:16;:25;14330:8;:57::i;:::-;-1:-1:-1;14418:4:0;;13901:529;-1:-1:-1;;;;13901:529:0:o;36862:182::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36959:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;36959:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37005:31;;1163:41:1;;;37005:31:0::1;::::0;1136:18:1;37005:31:0::1;;;;;;;;36862:182:::0;;:::o;14835:290::-;10082:10;14948:4;15037:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15037:34:0;;;;;;;;;;14948:4;;14965:130;;15015:7;;15037:47;;15074:10;;15037:47;:::i;:::-;14965:8;:130::i;38658:164::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38733:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;38733:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38780:34;;1163:41:1;;;38780:34:0::1;::::0;1136:18:1;38780:34:0::1;1023:187:1::0;36361:233:0;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;36447:1:::1;36437:6;:11;;36429:60;;;::::0;-1:-1:-1;;;36429:60:0;;7716:2:1;36429:60:0::1;::::0;::::1;7698:21:1::0;7755:2;7735:18;;;7728:30;7794:34;7774:18;;;7767:62;-1:-1:-1;;;7845:18:1;;;7838:34;7889:19;;36429:60:0::1;7514:400:1::0;36429:60:0::1;36539:4;36522:13;12204:12:::0;;;12116:108;36522:13:::1;36513:22;::::0;:6;:22:::1;:::i;:::-;36512:31;;;;:::i;:::-;36500:9;:43:::0;;;36559:27:::1;::::0;1695:25:1;;;36559:27:0::1;::::0;1683:2:1;1668:18;36559:27:0::1;;;;;;;;36361:233:::0;:::o;39759:160::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;39869:9:::1;::::0;39841:38:::1;::::0;-1:-1:-1;;;;;39869:9:0::1;::::0;;::::1;::::0;::::1;::::0;39841:38;::::1;::::0;::::1;::::0;;;::::1;39890:9;:21:::0;;-1:-1:-1;;;;;39890:21:0;;::::1;;;-1:-1:-1::0;;;;;;39890:21:0;;::::1;::::0;;;::::1;::::0;;39759:160::o;22335:103::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;22400:30:::1;22427:1;22400:18;:30::i;:::-;22335:103::o:0;34278:130::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;34332:14:::1;:22:::0;;-1:-1:-1;;34332:22:0::1;::::0;;34370:30:::1;::::0;34384:15:::1;::::0;34370:30:::1;::::0;34349:5:::1;::::0;34370:30:::1;34278:130::o:0;11215:104::-;11271:13;11304:7;11297:14;;;;;:::i;37990:419::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;38106:10:::1;:26:::0;;;38143:10:::1;:20:::0;;;38189:23:::1;38156:7:::0;38119:13;38189:23:::1;:::i;:::-;38174:12;:38:::0;;;38261:3:::1;-1:-1:-1::0;38245:19:0::1;38223:110;;;::::0;-1:-1:-1;;;38223:110:0;;8516:2:1;38223:110:0::1;::::0;::::1;8498:21:1::0;8555:2;8535:18;;;8528:30;8594:34;8574:18;;;8567:62;-1:-1:-1;;;8645:18:1;;;8638:39;8694:19;;38223:110:0::1;8314:405:1::0;38223:110:0::1;38364:12;::::0;38378:10:::1;::::0;38390::::1;::::0;38349:52:::1;::::0;;8926:25:1;;;8982:2;8967:18;;8960:34;;;;9010:18;;;9003:34;38349:52:0::1;::::0;8914:2:1;8899:18;38349:52:0::1;;;;;;;;37990:419:::0;;:::o;15624:475::-;10082:10;15742:4;15786:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15786:34:0;;;;;;;;;;15853:35;;;;15831:122;;;;-1:-1:-1;;;15831:122:0;;9250:2:1;15831:122:0;;;9232:21:1;9289:2;9269:18;;;9262:30;9328:34;9308:18;;;9301:62;-1:-1:-1;;;9379:18:1;;;9372:35;9424:19;;15831:122:0;9048:401:1;15831:122:0;15989:67;10082:10;16012:7;16040:15;16021:16;:34;15989:8;:67::i;:::-;-1:-1:-1;16087:4:0;;15624:475;-1:-1:-1;;;15624:475:0:o;12643:200::-;12754:4;12771:42;10082:10;12795:9;12806:6;12771:9;:42::i;37331:370::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;37446:9:::1;:25:::0;;;37482:9:::1;:19:::0;;;37526:21:::1;37494:7:::0;37458:13;37526:21:::1;:::i;:::-;37512:11;:35:::0;;;37581:3:::1;-1:-1:-1::0;37566:18:0::1;37558:71;;;::::0;-1:-1:-1;;;37558:71:0;;9656:2:1;37558:71:0::1;::::0;::::1;9638:21:1::0;9695:2;9675:18;;;9668:30;9734:34;9714:18;;;9707:62;-1:-1:-1;;;9785:18:1;;;9778:38;9833:19;;37558:71:0::1;9454:404:1::0;37558:71:0::1;37659:11;::::0;37672:9:::1;::::0;37683::::1;::::0;37645:48:::1;::::0;;8926:25:1;;;8982:2;8967:18;;8960:34;;;;9010:18;;;9003:34;37645:48:0::1;::::0;8914:2:1;8899:18;37645:48:0::1;8724:319:1::0;35941:213:0;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;36023:1:::1;36013:6;:11;;36005:56;;;::::0;-1:-1:-1;;;36005:56:0;;10065:2:1;36005:56:0::1;::::0;::::1;10047:21:1::0;;;10084:18;;;10077:30;10143:34;10123:18;;;10116:62;10195:18;;36005:56:0::1;9863:356:1::0;36005:56:0::1;36107:4;36090:13;12204:12:::0;;;12116:108;36090:13:::1;36081:22;::::0;:6;:22:::1;:::i;:::-;36080:31;;;;:::i;:::-;36072:5;:39:::0;;;36127:19:::1;::::0;1695:25:1;;;36127:19:0::1;::::0;1683:2:1;1668:18;36127:19:0::1;1549:177:1::0;35165:540:0;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;35331:1:::1;35323:4;:9;;35301:111;;;::::0;-1:-1:-1;;;35301:111:0;;10426:2:1;35301:111:0::1;::::0;::::1;10408:21:1::0;10465:2;10445:18;;;10438:30;10504:34;10484:18;;;10477:62;-1:-1:-1;;;10555:18:1;;;10548:50;10615:19;;35301:111:0::1;10224:416:1::0;35301:111:0::1;35439:4;35431;:12;;35423:67;;;::::0;-1:-1:-1;;;35423:67:0;;10847:2:1;35423:67:0::1;::::0;::::1;10829:21:1::0;10886:2;10866:18;;;10859:30;10925:34;10905:18;;;10898:62;-1:-1:-1;;;10976:18:1;;;10969:40;11026:19;;35423:67:0::1;10645:406:1::0;35423:67:0::1;35503:12;:23:::0;;-1:-1:-1;;;;35503:23:0::1;-1:-1:-1::0;;;35503:23:0;::::1;;;;::::0;;12204:12;;35576:5:::1;::::0;35568:4;;35552:20:::1;;;;:::i;:::-;35551:30;;;;:::i;:::-;35537:11;:44:::0;35631:5:::1;35623:4:::0;35607:13:::1;12204:12:::0;;;12116:108;35607:13:::1;:20;;;;:::i;:::-;35606:30;;;;:::i;:::-;35592:11;:44:::0;35652:45:::1;::::0;;1436:14:1;;1429:22;1411:41;;1483:2;1468:18;;1461:34;;;1511:18;;;1504:34;;;35652:45:0::1;::::0;1399:2:1;1384:18;35652:45:0::1;;;;;;;35165:540:::0;;;:::o;34548:152::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;34610:20:::1;:28:::0;;-1:-1:-1;;34610:28:0::1;::::0;;34654:38:::1;::::0;34676:15:::1;::::0;34654:38:::1;::::0;34633:5:::1;::::0;34654:38:::1;34548:152::o:0;39133:264::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;39261:7:::1;-1:-1:-1::0;;;;;39253:15:0::1;:4;-1:-1:-1::0;;;;;39253:15:0::1;::::0;39231:122:::1;;;::::0;-1:-1:-1;;;39231:122:0;;11258:2:1;39231:122:0::1;::::0;::::1;11240:21:1::0;11297:2;11277:18;;;11270:30;11336:34;11316:18;;;11309:62;11407:27;11387:18;;;11380:55;11452:19;;39231:122:0::1;11056:421:1::0;39231:122:0::1;39366:23;39377:4;39383:5;39366:10;:23::i;:::-;39133:264:::0;;:::o;22593:238::-;21757:6;;-1:-1:-1;;;;;21757:6:0;10082:10;21904:23;21896:68;;;;-1:-1:-1;;;21896:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22696:22:0;::::1;22674:110;;;::::0;-1:-1:-1;;;22674:110:0;;11684:2:1;22674:110:0::1;::::0;::::1;11666:21:1::0;11723:2;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;-1:-1:-1;;;11813:18:1;;;11806:36;11859:19;;22674:110:0::1;11482:402:1::0;22674:110:0::1;22795:28;22814:8;22795:18;:28::i;:::-;22593:238:::0;:::o;19407:380::-;-1:-1:-1;;;;;19543:19:0;;19535:68;;;;-1:-1:-1;;;19535:68:0;;12091:2:1;19535:68:0;;;12073:21:1;12130:2;12110:18;;;12103:30;12169:34;12149:18;;;12142:62;-1:-1:-1;;;12220:18:1;;;12213:34;12264:19;;19535:68:0;11889:400:1;19535:68:0;-1:-1:-1;;;;;19622:21:0;;19614:68;;;;-1:-1:-1;;;19614:68:0;;12496:2:1;19614:68:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:1;;;12618:32;12667:19;;19614:68:0;12294:398:1;19614:68:0;-1:-1:-1;;;;;19695:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19747:32;;1695:25:1;;;19747:32:0;;1668:18:1;19747:32:0;;;;;;;19407:380;;;:::o;40253:4292::-;-1:-1:-1;;;;;40385:18:0;;40377:68;;;;-1:-1:-1;;;40377:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40464:16:0;;40456:64;;;;-1:-1:-1;;;40456:64:0;;;;;;;:::i;:::-;40537:6;40547:1;40537:11;40533:93;;40565:28;40581:4;40587:2;40591:1;40565:15;:28::i;:::-;40253:4292;;;:::o;40533:93::-;40642:14;;;;40638:2282;;;21757:6;;-1:-1:-1;;;;;40695:15:0;;;21757:6;;40695:15;;;;:49;;-1:-1:-1;21757:6:0;;-1:-1:-1;;;;;40731:13:0;;;21757:6;;40731:13;;40695:49;:86;;;;-1:-1:-1;;;;;;40765:16:0;;;;40695:86;:128;;;;-1:-1:-1;;;;;;40802:21:0;;40816:6;40802:21;;40695:128;:158;;;;-1:-1:-1;40845:8:0;;-1:-1:-1;;;40845:8:0;;;;40844:9;40695:158;40673:2236;;;40893:14;;;;40888:220;;-1:-1:-1;;;;;40966:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;40987:15:0;;;;;;:11;:15;;;;;;;;40966:36;40932:156;;;;-1:-1:-1;;;40932:156:0;;13709:2:1;40932:156:0;;;13691:21:1;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;-1:-1:-1;;;13838:18:1;;;13831:32;13880:19;;40932:156:0;13507:398:1;40932:156:0;41264:20;;;;;;;41260:629;;;21757:6;;-1:-1:-1;;;;;41339:13:0;;;21757:6;;41339:13;;;;:66;;;41395:9;-1:-1:-1;;;;;41381:24:0;:2;-1:-1:-1;;;;;41381:24:0;;;41339:66;:117;;;;;41448:7;-1:-1:-1;;;;;41434:22:0;:2;-1:-1:-1;;;;;41434:22:0;;;41339:117;41309:561;;;41574:9;41545:39;;;;:28;:39;;;;;;41620:12;-1:-1:-1;41507:258:0;;;;-1:-1:-1;;;41507:258:0;;14112:2:1;41507:258:0;;;14094:21:1;14151:2;14131:18;;;14124:30;14190:34;14170:18;;;14163:62;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:19:1;;;14305:40;14362:19;;41507:258:0;13910:477:1;41507:258:0;41821:9;41792:39;;;;:28;:39;;;;;41834:12;41792:54;;41309:561;-1:-1:-1;;;;;41941:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;41977:19:0;;;;;;:15;:19;;;;;;;;41976:20;41941:55;41937:957;;;42065:5;;42055:6;:15;;42021:139;;;;-1:-1:-1;;;42021:139:0;;14594:2:1;42021:139:0;;;14576:21:1;14633:2;14613:18;;;14606:30;14672:34;14652:18;;;14645:62;-1:-1:-1;;;14723:18:1;;;14716:36;14769:19;;42021:139:0;14392:402:1;42021:139:0;42243:9;;-1:-1:-1;;;;;12404:18:0;;12377:7;12404:18;;;;;;;;;;;42217:22;;:6;:22;:::i;:::-;:35;;42183:140;;;;-1:-1:-1;;;42183:140:0;;15001:2:1;42183:140:0;;;14983:21:1;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15059:18:1;;;15052:49;15118:18;;42183:140:0;14799:343:1;42183:140:0;41937:957;;;-1:-1:-1;;;;;42421:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;42455:21:0;;;;;;:15;:21;;;;;;;;42454:22;42421:55;42395:499;;;42563:5;;42553:6;:15;;42519:140;;;;-1:-1:-1;;;42519:140:0;;15349:2:1;42519:140:0;;;15331:21:1;15388:2;15368:18;;;15361:30;15427:34;15407:18;;;15400:62;-1:-1:-1;;;15478:18:1;;;15471:37;15525:19;;42519:140:0;15147:403:1;42395:499:0;-1:-1:-1;;;;;42690:19:0;;;;;;:15;:19;;;;;;;;42685:209;;42794:9;;-1:-1:-1;;;;;12404:18:0;;12377:7;12404:18;;;;;;;;;;;42768:22;;:6;:22;:::i;:::-;:35;;42734:140;;;;-1:-1:-1;;;42734:140:0;;15001:2:1;42734:140:0;;;14983:21:1;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15059:18:1;;;15052:49;15118:18;;42734:140:0;14799:343:1;42734:140:0;42981:4;42932:28;12404:18;;;;;;;;;;;43039:11;;43015:35;;;;;;;43081:36;;-1:-1:-1;43105:12:0;;-1:-1:-1;;;43105:12:0;;;;43081:36;:62;;;;-1:-1:-1;43135:8:0;;-1:-1:-1;;;43135:8:0;;;;43134:9;43081:62;:111;;;;-1:-1:-1;;;;;;43161:31:0;;;;;;:25;:31;;;;;;;;43160:32;43081:111;:146;;;;-1:-1:-1;;;;;;43210:17:0;;;;;;:11;:17;;;;;;;;43209:18;43081:146;:179;;;;-1:-1:-1;;;;;;43245:15:0;;;;;;:11;:15;;;;;;;;43244:16;43081:179;43063:311;;;43287:8;:15;;-1:-1:-1;;;;43287:15:0;-1:-1:-1;;;43287:15:0;;;43319:10;:8;:10::i;:::-;43346:8;:16;;-1:-1:-1;;;;43346:16:0;;;43063:311;43402:8;;-1:-1:-1;;;;;43512:17:0;;43386:12;43512:17;;;:11;:17;;;;;;43402:8;-1:-1:-1;;;43402:8:0;;;;;43401:9;;43512:17;;:36;;-1:-1:-1;;;;;;43533:15:0;;;;;;:11;:15;;;;;;;;43512:36;43508:84;;;-1:-1:-1;43575:5:0;43508:84;43604:12;43709:7;43705:787;;;-1:-1:-1;;;;;43761:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;43809:1;43794:12;;:16;43761:49;43757:586;;;43838:33;43867:3;43838:24;43849:12;;43838:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;43831:40;;43928:12;;43914:10;;43907:4;:17;;;;:::i;:::-;43906:34;;;;:::i;:::-;43890:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;44003:12:0;;43989:10;;43982:17;;:4;:17;:::i;:::-;43981:34;;;;:::i;:::-;43959:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;43757:586:0;;-1:-1:-1;43757:586:0;;-1:-1:-1;;;;;44077:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;44126:1;44112:11;;:15;44077:50;44073:270;;;44155:32;44183:3;44155:23;44166:11;;44155:6;:10;;:23;;;;:::i;:32::-;44148:39;;44243:11;;44230:9;;44223:4;:16;;;;:::i;:::-;44222:32;;;;:::i;:::-;44206:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;44316:11:0;;44303:9;;44296:16;;:4;:16;:::i;:::-;44295:32;;;;:::i;:::-;44273:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;44073:270:0;44363:8;;44359:91;;44392:42;44408:4;44422;44429;44392:15;:42::i;:::-;44466:14;44476:4;44466:14;;:::i;:::-;;;43705:787;44504:33;44520:4;44526:2;44530:6;44504:15;:33::i;:::-;40366:4179;;;;40253:4292;;;:::o;22991:191::-;23084:6;;;-1:-1:-1;;;;;23101:17:0;;;-1:-1:-1;;;;;;23101:17:0;;;;;;;23134:40;;23084:6;;;23101:17;23084:6;;23134:40;;23065:16;;23134:40;23054:128;22991:191;:::o;39405:170::-;-1:-1:-1;;;;;39470:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39470:39:0;;;;;;;;;;39527:40;;39470:39;;:31;39527:40;;;39405:170;;:::o;16589:770::-;-1:-1:-1;;;;;16729:20:0;;16721:70;;;;-1:-1:-1;;;16721:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16810:23:0;;16802:71;;;;-1:-1:-1;;;16802:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16970:17:0;;16946:21;16970:17;;;;;;;;;;;17020:23;;;;16998:111;;;;-1:-1:-1;;;16998:111:0;;15890:2:1;16998:111:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;-1:-1:-1;;;16019:18:1;;;16012:36;16065:19;;16998:111:0;15688:402:1;16998:111:0;-1:-1:-1;;;;;17145:17:0;;;:9;:17;;;;;;;;;;;17165:22;;;17145:42;;17209:20;;;;;;;;:30;;17181:6;;17145:9;17209:30;;17181:6;;17209:30;:::i;:::-;;;;;;;;17274:9;-1:-1:-1;;;;;17257:35:0;17266:6;-1:-1:-1;;;;;17257:35:0;;17285:6;17257:35;;;;1695:25:1;;1683:2;1668:18;;1549:177;17257:35:0;;;;;;;;16710:649;16589:770;;;:::o;45134:920::-;45217:4;45173:23;12404:18;;;;;;;;;;;;;;45317:20;;;45313:59;;45354:7;;;45134:920::o;45313:59::-;45406:11;;45388:15;:29;45384:91;;;45452:11;;45434:29;;45384:91;45516:15;45572:21;45606:36;45516:15;45606:16;:36::i;:::-;45655:18;45676:44;:21;45702:17;45676:25;:44::i;:::-;45655:65;;45733:17;45753:51;45786:17;45753:28;45768:12;;45753:10;:14;;:28;;;;:::i;:51::-;45838:1;45817:18;:22;;;45850:12;:16;;;45901:9;;45893:45;;45733:71;;-1:-1:-1;;;;;;45901:9:0;;45733:71;;45893:45;45838:1;45893:45;45733:71;45901:9;45893:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45973:9:0;;45965:81;;45879:59;;-1:-1:-1;45973:9:0;;;-1:-1:-1;;;;;45973:9:0;;45996:21;;45965:81;;;;45996:21;45973:9;45965:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;45134:920:0:o;3361:98::-;3419:7;3446:5;3450:1;3446;:5;:::i;:::-;3439:12;3361:98;-1:-1:-1;;;3361:98:0:o;3760:::-;3818:7;3845:5;3849:1;3845;:5;:::i;44553:571::-;44703:16;;;44717:1;44703:16;;;;;;;;44679:21;;44703:16;;;;;;;;;;-1:-1:-1;44703:16:0;44679:40;;44748:4;44730;44735:1;44730:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44730:23:0;;;-1:-1:-1;;;;;44730:23:0;;;;;44774:9;-1:-1:-1;;;;;44774:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44764:4;44769:1;44764:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;44764:26:0;;;-1:-1:-1;;;;;44764:26:0;;;;;44803:56;44820:4;44835:9;44847:11;44803:8;:56::i;:::-;44898:218;;-1:-1:-1;;;44898:218:0;;-1:-1:-1;;;;;44898:9:0;:60;;;;:218;;44973:11;;44999:1;;45043:4;;45070;;45090:15;;44898:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44608:516;44553:571;:::o;3004:98::-;3062:7;3089:5;3093:1;3089;:5;:::i;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;1731:247::-;1790:6;1843:2;1831:9;1822:7;1818:23;1814:32;1811:52;;;1859:1;1856;1849:12;1811:52;1898:9;1885:23;1917:31;1942:5;1917:31;:::i;2337:456::-;2414:6;2422;2430;2483:2;2471:9;2462:7;2458:23;2454:32;2451:52;;;2499:1;2496;2489:12;2451:52;2538:9;2525:23;2557:31;2582:5;2557:31;:::i;:::-;2607:5;-1:-1:-1;2664:2:1;2649:18;;2636:32;2677:33;2636:32;2677:33;:::i;:::-;2337:456;;2729:7;;-1:-1:-1;;;2783:2:1;2768:18;;;;2755:32;;2337:456::o;2798:160::-;2863:20;;2919:13;;2912:21;2902:32;;2892:60;;2948:1;2945;2938:12;2892:60;2798:160;;;:::o;2963:315::-;3028:6;3036;3089:2;3077:9;3068:7;3064:23;3060:32;3057:52;;;3105:1;3102;3095:12;3057:52;3144:9;3131:23;3163:31;3188:5;3163:31;:::i;:::-;3213:5;-1:-1:-1;3237:35:1;3268:2;3253:18;;3237:35;:::i;:::-;3227:45;;2963:315;;;;;:::o;3680:180::-;3739:6;3792:2;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;-1:-1:-1;3831:23:1;;3680:180;-1:-1:-1;3680:180:1:o;4821:248::-;4889:6;4897;4950:2;4938:9;4929:7;4925:23;4921:32;4918:52;;;4966:1;4963;4956:12;4918:52;-1:-1:-1;;4989:23:1;;;5059:2;5044:18;;;5031:32;;-1:-1:-1;4821:248:1:o;5383:316::-;5457:6;5465;5473;5526:2;5514:9;5505:7;5501:23;5497:32;5494:52;;;5542:1;5539;5532:12;5494:52;5565:26;5581:9;5565:26;:::i;:::-;5555:36;5638:2;5623:18;;5610:32;;-1:-1:-1;5689:2:1;5674:18;;;5661:32;;5383:316;-1:-1:-1;;;5383:316:1:o;5704:388::-;5772:6;5780;5833:2;5821:9;5812:7;5808:23;5804:32;5801:52;;;5849:1;5846;5839:12;5801:52;5888:9;5875:23;5907:31;5932:5;5907:31;:::i;:::-;5957:5;-1:-1:-1;6014:2:1;5999:18;;5986:32;6027:33;5986:32;6027:33;:::i;:::-;6079:7;6069:17;;;5704:388;;;;;:::o;6097:380::-;6176:1;6172:12;;;;6219;;;6240:61;;6294:4;6286:6;6282:17;6272:27;;6240:61;6347:2;6339:6;6336:14;6316:18;6313:38;6310:161;;6393:10;6388:3;6384:20;6381:1;6374:31;6428:4;6425:1;6418:15;6456:4;6453:1;6446:15;6310:161;;6097:380;;;:::o;6482:356::-;6684:2;6666:21;;;6703:18;;;6696:30;6762:34;6757:2;6742:18;;6735:62;6829:2;6814:18;;6482:356::o;7252:127::-;7313:10;7308:3;7304:20;7301:1;7294:31;7344:4;7341:1;7334:15;7368:4;7365:1;7358:15;7384:125;7449:9;;;7470:10;;;7467:36;;;7483:18;;:::i;7919:168::-;7992:9;;;8023;;8040:15;;;8034:22;;8020:37;8010:71;;8061:18;;:::i;8092:217::-;8132:1;8158;8148:132;;8202:10;8197:3;8193:20;8190:1;8183:31;8237:4;8234:1;8227:15;8265:4;8262:1;8255:15;8148:132;-1:-1:-1;8294:9:1;;8092:217::o;12697:401::-;12899:2;12881:21;;;12938:2;12918:18;;;12911:30;12977:34;12972:2;12957:18;;12950:62;-1:-1:-1;;;13043:2:1;13028:18;;13021:35;13088:3;13073:19;;12697:401::o;13103:399::-;13305:2;13287:21;;;13344:2;13324:18;;;13317:30;13383:34;13378:2;13363:18;;13356:62;-1:-1:-1;;;13449:2:1;13434:18;;13427:33;13492:3;13477:19;;13103:399::o;15555:128::-;15622:9;;;15643:11;;;15640:37;;;15657:18;;:::i;16437:127::-;16498:10;16493:3;16489:20;16486:1;16479:31;16529:4;16526:1;16519:15;16553:4;16550:1;16543:15;16569:251;16639:6;16692:2;16680:9;16671:7;16667:23;16663:32;16660:52;;;16708:1;16705;16698:12;16660:52;16740:9;16734:16;16759:31;16784:5;16759:31;:::i;16825:980::-;17087:4;17135:3;17124:9;17120:19;17166:6;17155:9;17148:25;17192:2;17230:6;17225:2;17214:9;17210:18;17203:34;17273:3;17268:2;17257:9;17253:18;17246:31;17297:6;17332;17326:13;17363:6;17355;17348:22;17401:3;17390:9;17386:19;17379:26;;17440:2;17432:6;17428:15;17414:29;;17461:1;17471:195;17485:6;17482:1;17479:13;17471:195;;;17550:13;;-1:-1:-1;;;;;17546:39:1;17534:52;;17641:15;;;;17606:12;;;;17582:1;17500:9;17471:195;;;-1:-1:-1;;;;;;;17722:32:1;;;;17717:2;17702:18;;17695:60;-1:-1:-1;;;17786:3:1;17771:19;17764:35;17683:3;16825:980;-1:-1:-1;;;16825:980:1:o
Swarm Source
ipfs://e0c7b7c93549d80bca691b34ea1fa439e8bc8abab2f53d6d0a0628f6385ceac9
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.