ERC-20
Overview
Max Total Supply
420,690,000,000,000 PEPE
Holders
76
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,389,770,138,611.344414516088568198 PEPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ox69P3P3
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: Pepe.sol pragma solidity ^0.8.19; //0x69P3P3 $PEPE //Telegram: https://t.me/Ox69P3P3 //Website: https://0x69P3P3.vip //Twitter: https://twitter.com/0x69P3P3 interface IDexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); } interface IDexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract Ox69P3P3 is ERC20, Ownable { uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; IDexRouter public dexRouter; address public lpPair; bool private swapping; uint256 public swapTokensAtAmount; address operationsAddress; uint256 public tradingActiveBlock = 0; // 0 means trading is not active mapping (address => bool) public bot; uint256 public botsCaught; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyOperationsFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellOperationsFee; uint256 public sellLiquidityFee; uint256 public tokensForOperations; uint256 public tokensForLiquidity; /******************/ // exlcude from fees and max transaction amount mapping (address => bool) private _isExcludedFromFees; mapping (address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping (address => bool) public automatedMarketMakerPairs; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event EnabledTrading(); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedOperationsAddress(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event BuyBackTriggered(uint256 amount); event OwnerForcedSwapBack(uint256 timestamp); event CaughtEarlyBuyer(address sniper); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event TransferForeignToken(address token, uint256 amount); constructor() ERC20("0x69P3P3", "PEPE") { address newOwner = msg.sender; // can leave alone if owner is deployer. IDexRouter _dexRouter = IDexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); dexRouter = _dexRouter; // create pair lpPair = IDexFactory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH()); _excludeFromMaxTransaction(address(lpPair), true); _setAutomatedMarketMakerPair(address(lpPair), true); uint256 totalSupply = 420690 * 1e9 * 1e18; maxBuyAmount = totalSupply * 1 / 100; maxSellAmount = totalSupply * 1 / 100; maxWalletAmount = totalSupply * 2 / 100; swapTokensAtAmount = totalSupply * 1 / 1000; buyOperationsFee = 30; buyLiquidityFee = 0; buyTotalFees = buyOperationsFee + buyLiquidityFee; sellOperationsFee = 30; sellLiquidityFee = 0; sellTotalFees = sellOperationsFee + sellLiquidityFee; _excludeFromMaxTransaction(newOwner, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(newOwner, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); operationsAddress = address(newOwner); _mint(newOwner, totalSupply); transferOwnership(newOwner); } receive() external payable {} // only enable if no plan to airdrop function enableTrading() external onlyOwner { require(!tradingActive, "Cannot reenable trading"); tradingActive = true; swapEnabled = true; tradingActiveBlock = block.number; emit EnabledTrading(); } // remove limits after token is stable function removeLimits() external onlyOwner { limitsInEffect = false; transferDelayEnabled = false; emit RemovedLimits(); } function manageBoughtEarly(address wallet, bool flag) external onlyOwner { bot[wallet] = flag; } function massManageBoughtEarly(address[] calldata wallets, bool flag) external onlyOwner { for(uint256 i = 0; i < wallets.length; i++){ bot[wallets[i]] = flag; } } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner { transferDelayEnabled = false; } function updateMaxBuyAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 2 / 1000)/1e18, "Cannot set max buy amount lower than 0.2%"); maxBuyAmount = newNum * (10**18); emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 2 / 1000)/1e18, "Cannot set max sell amount lower than 0.2%"); maxSellAmount = newNum * (10**18); emit UpdatedMaxSellAmount(maxSellAmount); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require(newNum >= (totalSupply() * 3 / 1000)/1e18, "Cannot set max wallet amount lower than 0.3%"); maxWalletAmount = newNum * (10**18); emit UpdatedMaxWalletAmount(maxWalletAmount); } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require(newAmount >= totalSupply() * 1 / 100000, "Swap amount cannot be lower than 0.001% total supply."); require(newAmount <= totalSupply() * 1 / 1000, "Swap amount cannot be higher than 0.1% total supply."); swapTokensAtAmount = newAmount; } function _excludeFromMaxTransaction(address updAds, bool isExcluded) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function airdropToWallets(address[] memory wallets, uint256[] memory amountsInTokens) external onlyOwner { require(wallets.length == amountsInTokens.length, "arrays must be the same length"); require(wallets.length < 600, "Can only airdrop 600 wallets per txn due to gas limits"); // allows for airdrop + launch at the same exact time, reducing delays and reducing sniper input. for(uint256 i = 0; i < wallets.length; i++){ address wallet = wallets[i]; uint256 amount = amountsInTokens[i]; super._transfer(msg.sender, wallet, amount); } } function excludeFromMaxTransaction(address updAds, bool isEx) external onlyOwner { if(!isEx){ require(updAds != lpPair, "Cannot remove uniswap pair from max txn"); } _isExcludedMaxTransactionAmount[updAds] = isEx; } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require(pair != lpPair, "The pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; _excludeFromMaxTransaction(pair, value); emit SetAutomatedMarketMakerPair(pair, value); } function updateBuyFees(uint256 _operationsFee, uint256 _liquidityFee) external onlyOwner { buyOperationsFee = _operationsFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyOperationsFee + buyLiquidityFee; require(buyTotalFees <= 20, "Must keep fees at 20% or less"); } function updateSellFees(uint256 _operationsFee, uint256 _liquidityFee) external onlyOwner { sellOperationsFee = _operationsFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellOperationsFee + sellLiquidityFee; require(sellTotalFees <= 20, "Must keep fees at 20% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } 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"); require(amount > 0, "amount must be greater than 0"); if(!tradingActive){ require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } require(!bot[from] && !bot[to], "Bots cannot transfer tokens in or out except to owner or dead address."); if(limitsInEffect){ if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){ // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled){ if (to != address(dexRouter) && to != address(lpPair)){ require(_holderLastTransferTimestamp[tx.origin] < block.number - 2 && _holderLastTransferTimestamp[to] < block.number - 2, "_transfer:: Transfer Delay enabled. Try again later."); _holderLastTransferTimestamp[tx.origin] = block.number; _holderLastTransferTimestamp[to] = block.number; } } //when buy if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to]) { require(amount <= maxBuyAmount, "Buy transfer amount exceeds the max buy."); require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet"); } //when sell else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxSellAmount, "Sell transfer amount exceeds the max sell."); } else if (!_isExcludedMaxTransactionAmount[to]){ require(amount + balanceOf(to) <= maxWalletAmount, "Cannot Exceed max wallet"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if(canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; // if any account belongs to _isExcludedFromFee account then remove the fee if(_isExcludedFromFees[from] || _isExcludedFromFees[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] && sellTotalFees > 0){ fees = amount * sellTotalFees / 100; tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees; tokensForOperations += fees * sellOperationsFee / sellTotalFees; } // on buy else if(automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount * buyTotalFees / 100; tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees; tokensForOperations += fees * buyOperationsFee / buyTotalFees; } 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] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(dexRouter), tokenAmount); // add the liquidity dexRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForOperations; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensAtAmount * 60){ contractBalance = swapTokensAtAmount * 60; } bool success; // Halve the amount of liquidity tokens uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; swapTokensForEth(contractBalance - liquidityTokens); uint256 ethBalance = address(this).balance; uint256 ethForLiquidity = ethBalance; uint256 ethForOperations = ethBalance * tokensForOperations / (totalTokensToSwap - (tokensForLiquidity/2)); ethForLiquidity -= ethForOperations; tokensForLiquidity = 0; tokensForOperations = 0; if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); } if(address(this).balance > 0){ (success,) = address(operationsAddress).call{value: address(this).balance}(""); } } function transferForeignToken(address _token, address _to) external onlyOwner returns (bool _sent) { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); _sent = IERC20(_token).transfer(_to, _contractBalance); emit TransferForeignToken(_token, _contractBalance); } // withdraw ETH if stuck or someone sends to the address function withdrawStuckETH() external onlyOwner { bool success; (success,) = address(msg.sender).call{value: address(this).balance}(""); } function setOperationsAddress(address _operationsAddress) external onlyOwner { require(_operationsAddress != address(0), "_operationsAddress address cannot be 0"); operationsAddress = payable(_operationsAddress); } // force Swap back if slippage issues. function forceSwapBack() external onlyOwner { require(balanceOf(address(this)) >= 0, "No tokens to swap"); swapping = true; swapBack(); swapping = false; emit OwnerForcedSwapBack(block.timestamp); } }
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":"amount","type":"uint256"}],"name":"BuyBackTriggered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sniper","type":"address"}],"name":"CaughtEarlyBuyer","type":"event"},{"anonymous":false,"inputs":[],"name":"EnabledTrading","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":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"OwnerForcedSwapBack","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferForeignToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedOperationsAddress","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"amountsInTokens","type":"uint256[]"}],"name":"airdropToWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botsCaught","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"dexRouter","outputs":[{"internalType":"contract IDexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"forceSwapBack","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"manageBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"bool","name":"flag","type":"bool"}],"name":"massManageBoughtEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellOperationsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_operationsAddress","type":"address"}],"name":"setOperationsAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForOperations","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"transferForeignToken","outputs":[{"internalType":"bool","name":"_sent","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_operationsFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040525f600d556010805462ffffff1916620100011790556012805460ff1916600117905534801562000032575f80fd5b5060405180604001604052806008815260200167307836395033503360c01b815250604051806040016040528060048152602001635045504560e01b81525081600390816200008291906200077e565b5060046200009182826200077e565b505050620000ae620000a8620003af60201b60201c565b620003b3565b600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051339291829163c45a0155916004808201926020929091908290030181865afa15801562000116573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200013c919062000846565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000188573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001ae919062000846565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001f9573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200021f919062000846565b600a80546001600160a01b0319166001600160a01b039290921691821790556200024b90600162000404565b600a5462000264906001600160a01b0316600162000466565b6d14bddab3e51a57cff87a5000000060646200028282600162000889565b6200028e9190620008a9565b6006556064620002a082600162000889565b620002ac9190620008a9565b6007556064620002be82600262000889565b620002ca9190620008a9565b6008556103e8620002dd82600162000889565b620002e99190620008a9565b600b55601e60148190555f60158190556200030491620008c9565b601355601e60178190555f60188190556200031f91620008c9565b6016556200032f83600162000404565b6200033c30600162000404565b6200034b61dead600162000404565b62000358836001620004d0565b62000365306001620004d0565b6200037461dead6001620004d0565b600c80546001600160a01b0319166001600160a01b0385161790556200039b838262000538565b620003a683620005fd565b505050620008df565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b0382165f908152601d60205260409020805460ff191682151517905562000495828262000404565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b620004da6200067c565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005945760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620005a79190620008c9565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b620006076200067c565b6001600160a01b0381166200066e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016200058b565b6200067981620003b3565b50565b6005546001600160a01b03163314620006d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200058b565b565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200070857607f821691505b6020821081036200072757634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620006da575f81815260208120601f850160051c81016020861015620007555750805b601f850160051c820191505b81811015620007765782815560010162000761565b505050505050565b81516001600160401b038111156200079a576200079a620006df565b620007b281620007ab8454620006f3565b846200072d565b602080601f831160018114620007e8575f8415620007d05750858301515b5f19600386901b1c1916600185901b17855562000776565b5f85815260208120601f198616915b828110156200081857888601518255948401946001909101908401620007f7565b50858210156200083657878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000857575f80fd5b81516001600160a01b03811681146200086e575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620008a357620008a362000875565b92915050565b5f82620008c457634e487b7160e01b5f52601260045260245ffd5b500490565b80820180821115620008a357620008a362000875565b612e6080620008ed5f395ff3fe60806040526004361061035e575f3560e01c80637571336a116101bd578063c876d0b9116100f2578063e884f26011610092578063f2fde38b1161006d578063f2fde38b1461095e578063f5648a4f1461097d578063f637434214610991578063fb002c97146109a6575f80fd5b8063e884f26014610920578063ee40166e14610934578063f11a24d314610949575f80fd5b8063dc3f0d0f116100cd578063dc3f0d0f146108ae578063dd62ed3e146108cd578063e2f45605146108ec578063e800dff714610901575f80fd5b8063c876d0b914610861578063d257b34f1461087a578063d85ba06314610899575f80fd5b8063a457c2d71161015d578063b62496f511610138578063b62496f5146107d7578063bbc0c74214610805578063c024666814610823578063c18bc19514610842575f80fd5b8063a457c2d714610784578063a9059cbb146107a3578063aa4bde28146107c2575f80fd5b80638a8c523c116101985780638a8c523c146107205780638da5cb5b1461073457806395d89b41146107515780639a7a23d614610765575f80fd5b80637571336a146106cd5780638366e79a146106ec57806388e765ff1461070b575f80fd5b8063452ed4f11161029357806366d602ae116102335780636ddd17131161020e5780636ddd17131461065257806370a0823114610671578063715018a6146106a5578063751039fc146106b9575f80fd5b806366d602ae146106135780636a486a8e146106285780636b0a894c1461063d575f80fd5b80634f77f6c01161026e5780634f77f6c0146105b657806351f205e4146105cb5780635a139dd4146105df57806366ca9b83146105f4575f80fd5b8063452ed4f11461055f578063499b83941461057e5780634a62bb651461059d575f80fd5b80631a8145bb116102fe5780632be32b61116102d95780632be32b61146104d8578063313ce567146104f7578063353f2345146105125780633950935114610540575f80fd5b80631a8145bb146104855780632307b4411461049a57806323b872dd146104b9575f80fd5b8063095ea7b311610339578063095ea7b3146103eb57806310d5de531461041a578063130a2c3c1461044857806318160ddd14610467575f80fd5b806302dbd8f81461036957806306fdde031461038a5780630758d924146103b4575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061038861038336600461284c565b6109bb565b005b348015610395575f80fd5b5061039e610a35565b6040516103ab919061286c565b60405180910390f35b3480156103bf575f80fd5b506009546103d3906001600160a01b031681565b6040516001600160a01b0390911681526020016103ab565b3480156103f6575f80fd5b5061040a6104053660046128cb565b610ac5565b60405190151581526020016103ab565b348015610425575f80fd5b5061040a6104343660046128f5565b601c6020525f908152604090205460ff1681565b348015610453575f80fd5b50610388610462366004612924565b610ade565b348015610472575f80fd5b506002545b6040519081526020016103ab565b348015610490575f80fd5b50610477601a5481565b3480156104a5575f80fd5b506103886104b4366004612a73565b610b5a565b3480156104c4575f80fd5b5061040a6104d3366004612b2f565b610c8e565b3480156104e3575f80fd5b506103886104f2366004612b6d565b610cb1565b348015610502575f80fd5b50604051601281526020016103ab565b34801561051d575f80fd5b5061040a61052c3660046128f5565b600e6020525f908152604090205460ff1681565b34801561054b575f80fd5b5061040a61055a3660046128cb565b610d9c565b34801561056a575f80fd5b50600a546103d3906001600160a01b031681565b348015610589575f80fd5b506103886105983660046128f5565b610dbd565b3480156105a8575f80fd5b5060105461040a9060ff1681565b3480156105c1575f80fd5b5061047760175481565b3480156105d6575f80fd5b50610388610e4c565b3480156105ea575f80fd5b5061047760145481565b3480156105ff575f80fd5b5061038861060e36600461284c565b610eb9565b34801561061e575f80fd5b5061047760075481565b348015610633575f80fd5b5061047760165481565b348015610648575f80fd5b50610477600f5481565b34801561065d575f80fd5b5060105461040a9062010000900460ff1681565b34801561067c575f80fd5b5061047761068b3660046128f5565b6001600160a01b03165f9081526020819052604090205490565b3480156106b0575f80fd5b50610388610f2a565b3480156106c4575f80fd5b50610388610f3d565b3480156106d8575f80fd5b506103886106e7366004612b84565b610f85565b3480156106f7575f80fd5b5061040a610706366004612bbb565b61102a565b348015610716575f80fd5b5061047760065481565b34801561072b575f80fd5b506103886111b1565b34801561073f575f80fd5b506005546001600160a01b03166103d3565b34801561075c575f80fd5b5061039e611250565b348015610770575f80fd5b5061038861077f366004612b84565b61125f565b34801561078f575f80fd5b5061040a61079e3660046128cb565b611330565b3480156107ae575f80fd5b5061040a6107bd3660046128cb565b6113aa565b3480156107cd575f80fd5b5061047760085481565b3480156107e2575f80fd5b5061040a6107f13660046128f5565b601d6020525f908152604090205460ff1681565b348015610810575f80fd5b5060105461040a90610100900460ff1681565b34801561082e575f80fd5b5061038861083d366004612b84565b6113b7565b34801561084d575f80fd5b5061038861085c366004612b6d565b61141d565b34801561086c575f80fd5b5060125461040a9060ff1681565b348015610885575f80fd5b50610388610894366004612b6d565b611504565b3480156108a4575f80fd5b5061047760135481565b3480156108b9575f80fd5b506103886108c8366004612b6d565b61162d565b3480156108d8575f80fd5b506104776108e7366004612bbb565b611712565b3480156108f7575f80fd5b50610477600b5481565b34801561090c575f80fd5b5061038861091b366004612b84565b61173c565b34801561092b575f80fd5b5061038861176e565b34801561093f575f80fd5b50610477600d5481565b348015610954575f80fd5b5061047760155481565b348015610969575f80fd5b506103886109783660046128f5565b611782565b348015610988575f80fd5b506103886117fb565b34801561099c575f80fd5b5061047760185481565b3480156109b1575f80fd5b5061047760195481565b6109c3611842565b601782905560188190556109d78183612bfb565b601681905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b606060038054610a4490612c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090612c0e565b8015610abb5780601f10610a9257610100808354040283529160200191610abb565b820191905f5260205f20905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b5f33610ad281858561189c565b60019150505b92915050565b610ae6611842565b5f5b82811015610b545781600e5f868685818110610b0657610b06612c46565b9050602002016020810190610b1b91906128f5565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b4c81612c5a565b915050610ae8565b50505050565b610b62611842565b8051825114610bb35760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a28565b610258825110610c245760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203630302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a28565b5f5b8251811015610c89575f838281518110610c4257610c42612c46565b602002602001015190505f838381518110610c5f57610c5f612c46565b60200260200101519050610c743383836119bf565b50508080610c8190612c5a565b915050610c26565b505050565b5f33610c9b858285611ae7565b610ca6858585611b59565b506001949350505050565b610cb9611842565b670de0b6b3a76400006103e8610cce60025490565b610cd9906002612c72565b610ce39190612c89565b610ced9190612c89565b811015610d4e5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b6064820152608401610a28565b610d6081670de0b6b3a7640000612c72565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f33610ad2818585610dae8383611712565b610db89190612bfb565b61189c565b610dc5611842565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610a28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610e54611842565b305f908152602052600a805460ff60a01b1916600160a01b179055610e77612409565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610ec1611842565b60148290556015819055610ed58183612bfb565b601381905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a28565b610f32611842565b610f3b5f61256d565b565b610f45611842565b6010805460ff199081169091556012805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610f8d611842565b8061100057600a546001600160a01b03908116908316036110005760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a28565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b5f611033611842565b6001600160a01b0383166110895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a28565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156110cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f19190612ca8565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111659190612cbf565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6111b9611842565b601054610100900460ff16156112115760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610a28565b6010805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb7905f90a1565b606060048054610a4490612c0e565b611267611842565b600a546001600160a01b03908116908316036112eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a28565b6112f582826125be565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f338161133d8286611712565b90508381101561139d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a28565b610ca6828686840361189c565b5f33610ad2818585611b59565b6113bf611842565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611425611842565b670de0b6b3a76400006103e861143a60025490565b611445906003612c72565b61144f9190612c89565b6114599190612c89565b8110156114bd5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a28565b6114cf81670de0b6b3a7640000612c72565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610d91565b61150c611842565b620186a061151960025490565b611524906001612c72565b61152e9190612c89565b81101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a28565b6103e86115a760025490565b6115b2906001612c72565b6115bc9190612c89565b8111156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a28565b600b55565b611635611842565b670de0b6b3a76400006103e861164a60025490565b611655906002612c72565b61165f9190612c89565b6116699190612c89565b8110156116cb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a28565b6116dd81670de0b6b3a7640000612c72565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610d91565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611744611842565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b611776611842565b6012805460ff19169055565b61178a611842565b6001600160a01b0381166117ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a28565b6117f88161256d565b50565b611803611842565b6040515f90339047908381818185875af1925050503d805f8114610b54576040519150601f19603f3d011682016040523d82523d5f602084013e610b54565b6005546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b6001600160a01b0383166118fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a28565b6001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a28565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119e55760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611a0b5760405162461bcd60e51b8152600401610a2890612d1f565b6001600160a01b0383165f9081526020819052604090205481811015611a825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a28565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b54565b5f611af28484611712565b90505f198114610b545781811015611b4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a28565b610b54848484840361189c565b6001600160a01b038316611b7f5760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611ba55760405162461bcd60e51b8152600401610a2890612d1f565b5f8111611bf45760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a28565b601054610100900460ff16611c85576001600160a01b0383165f908152601b602052604090205460ff1680611c4057506001600160a01b0382165f908152601b602052604090205460ff165b611c855760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a28565b6001600160a01b0383165f908152600e602052604090205460ff16158015611cc557506001600160a01b0382165f908152600e602052604090205460ff16155b611d465760405162461bcd60e51b815260206004820152604660248201527f426f74732063616e6e6f74207472616e7366657220746f6b656e7320696e206f60448201527f72206f75742065786365707420746f206f776e6572206f722064656164206164606482015265323932b9b99760d11b608482015260a401610a28565b60105460ff1615612156576005546001600160a01b03848116911614801590611d7d57506005546001600160a01b03838116911614155b8015611d9157506001600160a01b03821615155b8015611da857506001600160a01b03821661dead14155b8015611dcc57506001600160a01b0383165f908152601b602052604090205460ff16155b8015611df057506001600160a01b0382165f908152601b602052604090205460ff16155b156121565760125460ff1615611f06576009546001600160a01b03838116911614801590611e2c5750600a546001600160a01b03838116911614155b15611f0657611e3c600243612d62565b325f90815260116020526040902054108015611e785750611e5e600243612d62565b6001600160a01b0383165f90815260116020526040902054105b611ee25760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610a28565b325f9081526011602052604080822043908190556001600160a01b03851683529120555b6001600160a01b0383165f908152601d602052604090205460ff168015611f4557506001600160a01b0382165f908152601c602052604090205460ff16155b1561202057600654811115611fad5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a28565b6008546001600160a01b0383165f90815260208190526040902054611fd29083612bfb565b111561201b5760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b612156565b6001600160a01b0382165f908152601d602052604090205460ff16801561205f57506001600160a01b0383165f908152601c602052604090205460ff16155b156120c95760075481111561201b5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a28565b6001600160a01b0382165f908152601c602052604090205460ff16612156576008546001600160a01b0383165f9081526020819052604090205461210d9083612bfb565b11156121565760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b305f90815260208190526040902054600b5481108015908190612181575060105462010000900460ff165b80156121975750600a54600160a01b900460ff16155b80156121bb57506001600160a01b0385165f908152601d602052604090205460ff16155b80156121df57506001600160a01b0385165f908152601b602052604090205460ff16155b801561220357506001600160a01b0384165f908152601b602052604090205460ff16155b1561223157600a805460ff60a01b1916600160a01b179055612223612409565b600a805460ff60a01b191690555b6001600160a01b0385165f908152601b602052604090205460019060ff168061227157506001600160a01b0385165f908152601b602052604090205460ff165b1561227957505f5b5f81156123f5576001600160a01b0386165f908152601d602052604090205460ff1680156122a857505f601654115b1561232e576064601654866122bd9190612c72565b6122c79190612c89565b9050601654601854826122da9190612c72565b6122e49190612c89565b601a5f8282546122f49190612bfb565b90915550506016546017546123099083612c72565b6123139190612c89565b60195f8282546123239190612bfb565b909155506123d79050565b6001600160a01b0387165f908152601d602052604090205460ff16801561235657505f601354115b156123d75760646013548661236b9190612c72565b6123759190612c89565b9050601354601554826123889190612c72565b6123929190612c89565b601a5f8282546123a29190612bfb565b90915550506013546014546123b79083612c72565b6123c19190612c89565b60195f8282546123d19190612bfb565b90915550505b80156123e8576123e88730836119bf565b6123f28186612d62565b94505b6124008787876119bf565b50505050505050565b305f9081526020819052604081205490505f601954601a5461242b9190612bfb565b9050811580612438575080155b15612441575050565b600b5461244f90603c612c72565b82111561246757600b5461246490603c612c72565b91505b5f80600283601a548661247a9190612c72565b6124849190612c89565b61248e9190612c89565b90506124a261249d8286612d62565b6125eb565b601a54479081905f906124b790600290612c89565b6124c19087612d62565b6019546124ce9085612c72565b6124d89190612c89565b90506124e48183612d62565b5f601a819055601955915083158015906124fd57505f82115b1561250c5761250c848361273b565b471561240057600c546040516001600160a01b039091169047905f81818185875af1925050503d805f811461255c576040519150601f19603f3d011682016040523d82523d5f602084013e612561565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f908152601d60205260409020805460ff19168215151790556112f582826127ea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261e5761261e612c46565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612675573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126999190612d75565b816001815181106126ac576126ac612c46565b6001600160a01b0392831660209182029290920101526009546126d2913091168461189c565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac9479061270a9085905f90869030904290600401612d90565b5f604051808303815f87803b158015612721575f80fd5b505af1158015612733573d5f803e3d5ffd5b505050505050565b6009546127539030906001600160a01b03168461189c565b60095460405163f305d71960e01b8152306004820152602481018490525f60448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156127be573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e39190612dff565b5050505050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b5f806040838503121561285d575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156128975785810183015185820160400152820161287b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117f8575f80fd5b5f80604083850312156128dc575f80fd5b82356128e7816128b7565b946020939093013593505050565b5f60208284031215612905575f80fd5b8135612910816128b7565b9392505050565b80151581146117f8575f80fd5b5f805f60408486031215612936575f80fd5b833567ffffffffffffffff8082111561294d575f80fd5b818601915086601f830112612960575f80fd5b81358181111561296e575f80fd5b8760208260051b8501011115612982575f80fd5b6020928301955093505084013561299881612917565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e06129a3565b604052919050565b5f67ffffffffffffffff821115612a0157612a016129a3565b5060051b60200190565b5f82601f830112612a1a575f80fd5b81356020612a2f612a2a836129e8565b6129b7565b82815260059290921b84018101918181019086841115612a4d575f80fd5b8286015b84811015612a685780358352918301918301612a51565b509695505050505050565b5f8060408385031215612a84575f80fd5b823567ffffffffffffffff80821115612a9b575f80fd5b818501915085601f830112612aae575f80fd5b81356020612abe612a2a836129e8565b82815260059290921b84018101918181019089841115612adc575f80fd5b948201945b83861015612b03578535612af4816128b7565b82529482019490820190612ae1565b96505086013592505080821115612b18575f80fd5b50612b2585828601612a0b565b9150509250929050565b5f805f60608486031215612b41575f80fd5b8335612b4c816128b7565b92506020840135612b5c816128b7565b929592945050506040919091013590565b5f60208284031215612b7d575f80fd5b5035919050565b5f8060408385031215612b95575f80fd5b8235612ba0816128b7565b91506020830135612bb081612917565b809150509250929050565b5f8060408385031215612bcc575f80fd5b8235612bd7816128b7565b91506020830135612bb0816128b7565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad857610ad8612be7565b600181811c90821680612c2257607f821691505b602082108103612c4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612c6b57612c6b612be7565b5060010190565b8082028115828204841417610ad857610ad8612be7565b5f82612ca357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612cb8575f80fd5b5051919050565b5f60208284031215612ccf575f80fd5b815161291081612917565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad857610ad8612be7565b5f60208284031215612d85575f80fd5b8151612910816128b7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612dde5784516001600160a01b031683529383019391830191600101612db9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612e11575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206bffdec1c9b962841eecf73786e891534efbf13973a026b70528e6ee1053a24c64736f6c63430008150033
Deployed Bytecode
0x60806040526004361061035e575f3560e01c80637571336a116101bd578063c876d0b9116100f2578063e884f26011610092578063f2fde38b1161006d578063f2fde38b1461095e578063f5648a4f1461097d578063f637434214610991578063fb002c97146109a6575f80fd5b8063e884f26014610920578063ee40166e14610934578063f11a24d314610949575f80fd5b8063dc3f0d0f116100cd578063dc3f0d0f146108ae578063dd62ed3e146108cd578063e2f45605146108ec578063e800dff714610901575f80fd5b8063c876d0b914610861578063d257b34f1461087a578063d85ba06314610899575f80fd5b8063a457c2d71161015d578063b62496f511610138578063b62496f5146107d7578063bbc0c74214610805578063c024666814610823578063c18bc19514610842575f80fd5b8063a457c2d714610784578063a9059cbb146107a3578063aa4bde28146107c2575f80fd5b80638a8c523c116101985780638a8c523c146107205780638da5cb5b1461073457806395d89b41146107515780639a7a23d614610765575f80fd5b80637571336a146106cd5780638366e79a146106ec57806388e765ff1461070b575f80fd5b8063452ed4f11161029357806366d602ae116102335780636ddd17131161020e5780636ddd17131461065257806370a0823114610671578063715018a6146106a5578063751039fc146106b9575f80fd5b806366d602ae146106135780636a486a8e146106285780636b0a894c1461063d575f80fd5b80634f77f6c01161026e5780634f77f6c0146105b657806351f205e4146105cb5780635a139dd4146105df57806366ca9b83146105f4575f80fd5b8063452ed4f11461055f578063499b83941461057e5780634a62bb651461059d575f80fd5b80631a8145bb116102fe5780632be32b61116102d95780632be32b61146104d8578063313ce567146104f7578063353f2345146105125780633950935114610540575f80fd5b80631a8145bb146104855780632307b4411461049a57806323b872dd146104b9575f80fd5b8063095ea7b311610339578063095ea7b3146103eb57806310d5de531461041a578063130a2c3c1461044857806318160ddd14610467575f80fd5b806302dbd8f81461036957806306fdde031461038a5780630758d924146103b4575f80fd5b3661036557005b5f80fd5b348015610374575f80fd5b5061038861038336600461284c565b6109bb565b005b348015610395575f80fd5b5061039e610a35565b6040516103ab919061286c565b60405180910390f35b3480156103bf575f80fd5b506009546103d3906001600160a01b031681565b6040516001600160a01b0390911681526020016103ab565b3480156103f6575f80fd5b5061040a6104053660046128cb565b610ac5565b60405190151581526020016103ab565b348015610425575f80fd5b5061040a6104343660046128f5565b601c6020525f908152604090205460ff1681565b348015610453575f80fd5b50610388610462366004612924565b610ade565b348015610472575f80fd5b506002545b6040519081526020016103ab565b348015610490575f80fd5b50610477601a5481565b3480156104a5575f80fd5b506103886104b4366004612a73565b610b5a565b3480156104c4575f80fd5b5061040a6104d3366004612b2f565b610c8e565b3480156104e3575f80fd5b506103886104f2366004612b6d565b610cb1565b348015610502575f80fd5b50604051601281526020016103ab565b34801561051d575f80fd5b5061040a61052c3660046128f5565b600e6020525f908152604090205460ff1681565b34801561054b575f80fd5b5061040a61055a3660046128cb565b610d9c565b34801561056a575f80fd5b50600a546103d3906001600160a01b031681565b348015610589575f80fd5b506103886105983660046128f5565b610dbd565b3480156105a8575f80fd5b5060105461040a9060ff1681565b3480156105c1575f80fd5b5061047760175481565b3480156105d6575f80fd5b50610388610e4c565b3480156105ea575f80fd5b5061047760145481565b3480156105ff575f80fd5b5061038861060e36600461284c565b610eb9565b34801561061e575f80fd5b5061047760075481565b348015610633575f80fd5b5061047760165481565b348015610648575f80fd5b50610477600f5481565b34801561065d575f80fd5b5060105461040a9062010000900460ff1681565b34801561067c575f80fd5b5061047761068b3660046128f5565b6001600160a01b03165f9081526020819052604090205490565b3480156106b0575f80fd5b50610388610f2a565b3480156106c4575f80fd5b50610388610f3d565b3480156106d8575f80fd5b506103886106e7366004612b84565b610f85565b3480156106f7575f80fd5b5061040a610706366004612bbb565b61102a565b348015610716575f80fd5b5061047760065481565b34801561072b575f80fd5b506103886111b1565b34801561073f575f80fd5b506005546001600160a01b03166103d3565b34801561075c575f80fd5b5061039e611250565b348015610770575f80fd5b5061038861077f366004612b84565b61125f565b34801561078f575f80fd5b5061040a61079e3660046128cb565b611330565b3480156107ae575f80fd5b5061040a6107bd3660046128cb565b6113aa565b3480156107cd575f80fd5b5061047760085481565b3480156107e2575f80fd5b5061040a6107f13660046128f5565b601d6020525f908152604090205460ff1681565b348015610810575f80fd5b5060105461040a90610100900460ff1681565b34801561082e575f80fd5b5061038861083d366004612b84565b6113b7565b34801561084d575f80fd5b5061038861085c366004612b6d565b61141d565b34801561086c575f80fd5b5060125461040a9060ff1681565b348015610885575f80fd5b50610388610894366004612b6d565b611504565b3480156108a4575f80fd5b5061047760135481565b3480156108b9575f80fd5b506103886108c8366004612b6d565b61162d565b3480156108d8575f80fd5b506104776108e7366004612bbb565b611712565b3480156108f7575f80fd5b50610477600b5481565b34801561090c575f80fd5b5061038861091b366004612b84565b61173c565b34801561092b575f80fd5b5061038861176e565b34801561093f575f80fd5b50610477600d5481565b348015610954575f80fd5b5061047760155481565b348015610969575f80fd5b506103886109783660046128f5565b611782565b348015610988575f80fd5b506103886117fb565b34801561099c575f80fd5b5061047760185481565b3480156109b1575f80fd5b5061047760195481565b6109c3611842565b601782905560188190556109d78183612bfb565b601681905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c65737300000060448201526064015b60405180910390fd5b5050565b606060038054610a4490612c0e565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7090612c0e565b8015610abb5780601f10610a9257610100808354040283529160200191610abb565b820191905f5260205f20905b815481529060010190602001808311610a9e57829003601f168201915b5050505050905090565b5f33610ad281858561189c565b60019150505b92915050565b610ae6611842565b5f5b82811015610b545781600e5f868685818110610b0657610b06612c46565b9050602002016020810190610b1b91906128f5565b6001600160a01b0316815260208101919091526040015f20805460ff191691151591909117905580610b4c81612c5a565b915050610ae8565b50505050565b610b62611842565b8051825114610bb35760405162461bcd60e51b815260206004820152601e60248201527f617272617973206d757374206265207468652073616d65206c656e67746800006044820152606401610a28565b610258825110610c245760405162461bcd60e51b815260206004820152603660248201527f43616e206f6e6c792061697264726f70203630302077616c6c657473207065726044820152752074786e2064756520746f20676173206c696d69747360501b6064820152608401610a28565b5f5b8251811015610c89575f838281518110610c4257610c42612c46565b602002602001015190505f838381518110610c5f57610c5f612c46565b60200260200101519050610c743383836119bf565b50508080610c8190612c5a565b915050610c26565b505050565b5f33610c9b858285611ae7565b610ca6858585611b59565b506001949350505050565b610cb9611842565b670de0b6b3a76400006103e8610cce60025490565b610cd9906002612c72565b610ce39190612c89565b610ced9190612c89565b811015610d4e5760405162461bcd60e51b815260206004820152602960248201527f43616e6e6f7420736574206d61782062757920616d6f756e74206c6f776572206044820152687468616e20302e322560b81b6064820152608401610a28565b610d6081670de0b6b3a7640000612c72565b60068190556040519081527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f33610ad2818585610dae8383611712565b610db89190612bfb565b61189c565b610dc5611842565b6001600160a01b038116610e2a5760405162461bcd60e51b815260206004820152602660248201527f5f6f7065726174696f6e734164647265737320616464726573732063616e6e6f60448201526507420626520360d41b6064820152608401610a28565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b610e54611842565b305f908152602052600a805460ff60a01b1916600160a01b179055610e77612409565b600a805460ff60a01b191690556040514281527f1b56c383f4f48fc992e45667ea4eabae777b9cca68b516a9562d8cda78f1bb329060200160405180910390a1565b610ec1611842565b60148290556015819055610ed58183612bfb565b601381905560141015610a315760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420323025206f72206c6573730000006044820152606401610a28565b610f32611842565b610f3b5f61256d565b565b610f45611842565b6010805460ff199081169091556012805490911690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b610f8d611842565b8061100057600a546001600160a01b03908116908316036110005760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b6064820152608401610a28565b6001600160a01b03919091165f908152601c60205260409020805460ff1916911515919091179055565b5f611033611842565b6001600160a01b0383166110895760405162461bcd60e51b815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610a28565b6040516370a0823160e01b81523060048201525f906001600160a01b038516906370a0823190602401602060405180830381865afa1580156110cd573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110f19190612ca8565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509085169063a9059cbb906044016020604051808303815f875af1158015611141573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111659190612cbf565b604080516001600160a01b0387168152602081018490529193507fdeda980967fcead7b61e78ac46a4da14274af29e894d4d61e8b81ec38ab3e438910160405180910390a15092915050565b6111b9611842565b601054610100900460ff16156112115760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f74207265656e61626c652074726164696e670000000000000000006044820152606401610a28565b6010805462ffff0019166201010017905543600d556040517fa56feb2d31b9a7424db0be063fd450863979c9e2382cf5110f869bd1ad361bb7905f90a1565b606060048054610a4490612c0e565b611267611842565b600a546001600160a01b03908116908316036112eb5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a28565b6112f582826125be565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab905f90a35050565b5f338161133d8286611712565b90508381101561139d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a28565b610ca6828686840361189c565b5f33610ad2818585611b59565b6113bf611842565b6001600160a01b0382165f818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b611425611842565b670de0b6b3a76400006103e861143a60025490565b611445906003612c72565b61144f9190612c89565b6114599190612c89565b8110156114bd5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f7420736574206d61782077616c6c657420616d6f756e74206c6f7760448201526b6572207468616e20302e332560a01b6064820152608401610a28565b6114cf81670de0b6b3a7640000612c72565b60088190556040519081527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc90602001610d91565b61150c611842565b620186a061151960025490565b611524906001612c72565b61152e9190612c89565b81101561159b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a28565b6103e86115a760025490565b6115b2906001612c72565b6115bc9190612c89565b8111156116285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171892903a37ba30b61039bab838363c9760611b6064820152608401610a28565b600b55565b611635611842565b670de0b6b3a76400006103e861164a60025490565b611655906002612c72565b61165f9190612c89565b6116699190612c89565b8110156116cb5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f7420736574206d61782073656c6c20616d6f756e74206c6f776572604482015269207468616e20302e322560b01b6064820152608401610a28565b6116dd81670de0b6b3a7640000612c72565b60078190556040519081527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e90602001610d91565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b611744611842565b6001600160a01b03919091165f908152600e60205260409020805460ff1916911515919091179055565b611776611842565b6012805460ff19169055565b61178a611842565b6001600160a01b0381166117ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a28565b6117f88161256d565b50565b611803611842565b6040515f90339047908381818185875af1925050503d805f8114610b54576040519150601f19603f3d011682016040523d82523d5f602084013e610b54565b6005546001600160a01b03163314610f3b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a28565b6001600160a01b0383166118fe5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a28565b6001600160a01b03821661195f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a28565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166119e55760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611a0b5760405162461bcd60e51b8152600401610a2890612d1f565b6001600160a01b0383165f9081526020819052604090205481811015611a825760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a28565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b54565b5f611af28484611712565b90505f198114610b545781811015611b4c5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a28565b610b54848484840361189c565b6001600160a01b038316611b7f5760405162461bcd60e51b8152600401610a2890612cda565b6001600160a01b038216611ba55760405162461bcd60e51b8152600401610a2890612d1f565b5f8111611bf45760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610a28565b601054610100900460ff16611c85576001600160a01b0383165f908152601b602052604090205460ff1680611c4057506001600160a01b0382165f908152601b602052604090205460ff165b611c855760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a28565b6001600160a01b0383165f908152600e602052604090205460ff16158015611cc557506001600160a01b0382165f908152600e602052604090205460ff16155b611d465760405162461bcd60e51b815260206004820152604660248201527f426f74732063616e6e6f74207472616e7366657220746f6b656e7320696e206f60448201527f72206f75742065786365707420746f206f776e6572206f722064656164206164606482015265323932b9b99760d11b608482015260a401610a28565b60105460ff1615612156576005546001600160a01b03848116911614801590611d7d57506005546001600160a01b03838116911614155b8015611d9157506001600160a01b03821615155b8015611da857506001600160a01b03821661dead14155b8015611dcc57506001600160a01b0383165f908152601b602052604090205460ff16155b8015611df057506001600160a01b0382165f908152601b602052604090205460ff16155b156121565760125460ff1615611f06576009546001600160a01b03838116911614801590611e2c5750600a546001600160a01b03838116911614155b15611f0657611e3c600243612d62565b325f90815260116020526040902054108015611e785750611e5e600243612d62565b6001600160a01b0383165f90815260116020526040902054105b611ee25760405162461bcd60e51b815260206004820152603560248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527432b21710102a393c9030b3b0b4b7103630ba32b91760591b6064820152608401610a28565b325f9081526011602052604080822043908190556001600160a01b03851683529120555b6001600160a01b0383165f908152601d602052604090205460ff168015611f4557506001600160a01b0382165f908152601c602052604090205460ff16155b1561202057600654811115611fad5760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b6064820152608401610a28565b6008546001600160a01b0383165f90815260208190526040902054611fd29083612bfb565b111561201b5760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b612156565b6001600160a01b0382165f908152601d602052604090205460ff16801561205f57506001600160a01b0383165f908152601c602052604090205460ff16155b156120c95760075481111561201b5760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b6064820152608401610a28565b6001600160a01b0382165f908152601c602052604090205460ff16612156576008546001600160a01b0383165f9081526020819052604090205461210d9083612bfb565b11156121565760405162461bcd60e51b815260206004820152601860248201527710d85b9b9bdd08115e18d95959081b585e081dd85b1b195d60421b6044820152606401610a28565b305f90815260208190526040902054600b5481108015908190612181575060105462010000900460ff165b80156121975750600a54600160a01b900460ff16155b80156121bb57506001600160a01b0385165f908152601d602052604090205460ff16155b80156121df57506001600160a01b0385165f908152601b602052604090205460ff16155b801561220357506001600160a01b0384165f908152601b602052604090205460ff16155b1561223157600a805460ff60a01b1916600160a01b179055612223612409565b600a805460ff60a01b191690555b6001600160a01b0385165f908152601b602052604090205460019060ff168061227157506001600160a01b0385165f908152601b602052604090205460ff165b1561227957505f5b5f81156123f5576001600160a01b0386165f908152601d602052604090205460ff1680156122a857505f601654115b1561232e576064601654866122bd9190612c72565b6122c79190612c89565b9050601654601854826122da9190612c72565b6122e49190612c89565b601a5f8282546122f49190612bfb565b90915550506016546017546123099083612c72565b6123139190612c89565b60195f8282546123239190612bfb565b909155506123d79050565b6001600160a01b0387165f908152601d602052604090205460ff16801561235657505f601354115b156123d75760646013548661236b9190612c72565b6123759190612c89565b9050601354601554826123889190612c72565b6123929190612c89565b601a5f8282546123a29190612bfb565b90915550506013546014546123b79083612c72565b6123c19190612c89565b60195f8282546123d19190612bfb565b90915550505b80156123e8576123e88730836119bf565b6123f28186612d62565b94505b6124008787876119bf565b50505050505050565b305f9081526020819052604081205490505f601954601a5461242b9190612bfb565b9050811580612438575080155b15612441575050565b600b5461244f90603c612c72565b82111561246757600b5461246490603c612c72565b91505b5f80600283601a548661247a9190612c72565b6124849190612c89565b61248e9190612c89565b90506124a261249d8286612d62565b6125eb565b601a54479081905f906124b790600290612c89565b6124c19087612d62565b6019546124ce9085612c72565b6124d89190612c89565b90506124e48183612d62565b5f601a819055601955915083158015906124fd57505f82115b1561250c5761250c848361273b565b471561240057600c546040516001600160a01b039091169047905f81818185875af1925050503d805f811461255c576040519150601f19603f3d011682016040523d82523d5f602084013e612561565b606091505b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382165f908152601d60205260409020805460ff19168215151790556112f582826127ea565b6040805160028082526060820183525f9260208301908036833701905050905030815f8151811061261e5761261e612c46565b6001600160a01b03928316602091820292909201810191909152600954604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612675573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906126999190612d75565b816001815181106126ac576126ac612c46565b6001600160a01b0392831660209182029290920101526009546126d2913091168461189c565b60095460405163791ac94760e01b81526001600160a01b039091169063791ac9479061270a9085905f90869030904290600401612d90565b5f604051808303815f87803b158015612721575f80fd5b505af1158015612733573d5f803e3d5ffd5b505050505050565b6009546127539030906001600160a01b03168461189c565b60095460405163f305d71960e01b8152306004820152602481018490525f60448201819052606482015261dead60848201524260a48201526001600160a01b039091169063f305d71990839060c40160606040518083038185885af11580156127be573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906127e39190612dff565b5050505050565b6001600160a01b0382165f818152601c6020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b5f806040838503121561285d575f80fd5b50508035926020909101359150565b5f6020808352835180828501525f5b818110156128975785810183015185820160400152820161287b565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146117f8575f80fd5b5f80604083850312156128dc575f80fd5b82356128e7816128b7565b946020939093013593505050565b5f60208284031215612905575f80fd5b8135612910816128b7565b9392505050565b80151581146117f8575f80fd5b5f805f60408486031215612936575f80fd5b833567ffffffffffffffff8082111561294d575f80fd5b818601915086601f830112612960575f80fd5b81358181111561296e575f80fd5b8760208260051b8501011115612982575f80fd5b6020928301955093505084013561299881612917565b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156129e0576129e06129a3565b604052919050565b5f67ffffffffffffffff821115612a0157612a016129a3565b5060051b60200190565b5f82601f830112612a1a575f80fd5b81356020612a2f612a2a836129e8565b6129b7565b82815260059290921b84018101918181019086841115612a4d575f80fd5b8286015b84811015612a685780358352918301918301612a51565b509695505050505050565b5f8060408385031215612a84575f80fd5b823567ffffffffffffffff80821115612a9b575f80fd5b818501915085601f830112612aae575f80fd5b81356020612abe612a2a836129e8565b82815260059290921b84018101918181019089841115612adc575f80fd5b948201945b83861015612b03578535612af4816128b7565b82529482019490820190612ae1565b96505086013592505080821115612b18575f80fd5b50612b2585828601612a0b565b9150509250929050565b5f805f60608486031215612b41575f80fd5b8335612b4c816128b7565b92506020840135612b5c816128b7565b929592945050506040919091013590565b5f60208284031215612b7d575f80fd5b5035919050565b5f8060408385031215612b95575f80fd5b8235612ba0816128b7565b91506020830135612bb081612917565b809150509250929050565b5f8060408385031215612bcc575f80fd5b8235612bd7816128b7565b91506020830135612bb0816128b7565b634e487b7160e01b5f52601160045260245ffd5b80820180821115610ad857610ad8612be7565b600181811c90821680612c2257607f821691505b602082108103612c4057634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b5f60018201612c6b57612c6b612be7565b5060010190565b8082028115828204841417610ad857610ad8612be7565b5f82612ca357634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215612cb8575f80fd5b5051919050565b5f60208284031215612ccf575f80fd5b815161291081612917565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610ad857610ad8612be7565b5f60208284031215612d85575f80fd5b8151612910816128b7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b81811015612dde5784516001600160a01b031683529383019391830191600101612db9565b50506001600160a01b03969096166060850152505050608001529392505050565b5f805f60608486031215612e11575f80fd5b835192506020840151915060408401519050925092509256fea26469706673582212206bffdec1c9b962841eecf73786e891534efbf13973a026b70528e6ee1053a24c64736f6c63430008150033
Deployed Bytecode Sourcemap
21591:15985:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29753:321;;;;;;;;;;-1:-1:-1;29753:321:0;;;;;:::i;:::-;;:::i;:::-;;9347:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21744:27;;;;;;;;;;-1:-1:-1;21744:27:0;;;;-1:-1:-1;;;;;21744:27:0;;;;;;-1:-1:-1;;;;;1002:32:1;;;984:51;;972:2;957:18;21744:27:0;820:221:1;11707:201:0;;;;;;;;;;-1:-1:-1;11707:201:0;;;;;:::i;:::-;;:::i;:::-;;;1667:14:1;;1660:22;1642:41;;1630:2;1615:18;11707:201:0;1502:187:1;22861:64:0;;;;;;;;;;-1:-1:-1;22861:64:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;26138:199;;;;;;;;;;-1:-1:-1;26138:199:0;;;;;:::i;:::-;;:::i;10476:108::-;;;;;;;;;;-1:-1:-1;10564:12:0;;10476:108;;;2970:25:1;;;2958:2;2943:18;10476:108:0;2824:177:1;22678:33:0;;;;;;;;;;;;;;;;27986:618;;;;;;;;;;-1:-1:-1;27986:618:0;;;;;:::i;:::-;;:::i;12488:261::-;;;;;;;;;;-1:-1:-1;12488:261:0;;;;;:::i;:::-;;:::i;26504:269::-;;;;;;;;;;-1:-1:-1;26504:269:0;;;;;:::i;:::-;;:::i;10318:93::-;;;;;;;;;;-1:-1:-1;10318:93:0;;10401:2;6281:36:1;;6269:2;6254:18;10318:93:0;6139:184:1;21989:36:0;;;;;;;;;;-1:-1:-1;21989:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13158:238;;;;;;;;;;-1:-1:-1;13158:238:0;;;;;:::i;:::-;;:::i;21778:21::-;;;;;;;;;;-1:-1:-1;21778:21:0;;;;-1:-1:-1;;;;;21778:21:0;;;37034:237;;;;;;;;;;-1:-1:-1;37034:237:0;;;;;:::i;:::-;;:::i;22066:33::-;;;;;;;;;;-1:-1:-1;22066:33:0;;;;;;;;22558:32;;;;;;;;;;;;;;;;37323:248;;;;;;;;;;;;;:::i;22446:31::-;;;;;;;;;;;;;;;;29431:314;;;;;;;;;;-1:-1:-1;29431:314:0;;;;;:::i;:::-;;:::i;21670:28::-;;;;;;;;;;;;;;;;22523;;;;;;;;;;;;;;;;22032:25;;;;;;;;;;;;;;;;22146:30;;;;;;;;;;-1:-1:-1;22146:30:0;;;;;;;;;;;10647:127;;;;;;;;;;-1:-1:-1;10647:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10748:18:0;10721:7;10748:18;;;;;;;;;;;;10647:127;2802:103;;;;;;;;;;;;;:::i;25858:154::-;;;;;;;;;;;;;:::i;28612:260::-;;;;;;;;;;-1:-1:-1;28612:260:0;;;;;:::i;:::-;;:::i;36415:381::-;;;;;;;;;;-1:-1:-1;36415:381:0;;;;;:::i;:::-;;:::i;21636:27::-;;;;;;;;;;;;;;;;25557:249;;;;;;;;;;;;;:::i;2161:87::-;;;;;;;;;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;2234:6:0;2161:87;;9566:104;;;;;;;;;;;;;:::i;28880:295::-;;;;;;;;;;-1:-1:-1;28880:295:0;;;;;:::i;:::-;;:::i;13899:436::-;;;;;;;;;;-1:-1:-1;13899:436:0;;;;;:::i;:::-;;:::i;10980:193::-;;;;;;;;;;-1:-1:-1;10980:193:0;;;;;:::i;:::-;;:::i;21705:30::-;;;;;;;;;;;;;;;;23083:58;;;;;;;;;;-1:-1:-1;23083:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22106:33;;;;;;;;;;-1:-1:-1;22106:33:0;;;;;;;;;;;30082:182;;;;;;;;;;-1:-1:-1;30082:182:0;;;;;:::i;:::-;;:::i;27063:284::-;;;;;;;;;;-1:-1:-1;27063:284:0;;;;;:::i;:::-;;:::i;22364:39::-;;;;;;;;;;-1:-1:-1;22364:39:0;;;;;;;;27417:346;;;;;;;;;;-1:-1:-1;27417:346:0;;;;;:::i;:::-;;:::i;22412:27::-;;;;;;;;;;;;;;;;26781:274;;;;;;;;;;-1:-1:-1;26781:274:0;;;;;:::i;:::-;;:::i;11236:151::-;;;;;;;;;;-1:-1:-1;11236:151:0;;;;;:::i;:::-;;:::i;21836:33::-;;;;;;;;;;;;;;;;26020:110;;;;;;;;;;-1:-1:-1;26020:110:0;;;;;:::i;:::-;;:::i;26398:98::-;;;;;;;;;;;;;:::i;21912:37::-;;;;;;;;;;;;;;;;22484:30;;;;;;;;;;;;;;;;3060:201;;;;;;;;;;-1:-1:-1;3060:201:0;;;;;:::i;:::-;;:::i;36866:160::-;;;;;;;;;;;;;:::i;22597:31::-;;;;;;;;;;;;;;;;22637:34;;;;;;;;;;;;;;;;29753:321;2047:13;:11;:13::i;:::-;29854:17:::1;:34:::0;;;29899:16:::1;:32:::0;;;29958:36:::1;29918:13:::0;29874:14;29958:36:::1;:::i;:::-;29942:13;:52:::0;;;30030:2:::1;-1:-1:-1::0;30013:19:0::1;30005:61;;;::::0;-1:-1:-1;;;30005:61:0;;7780:2:1;30005:61:0::1;::::0;::::1;7762:21:1::0;7819:2;7799:18;;;7792:30;7858:31;7838:18;;;7831:59;7907:18;;30005:61:0::1;;;;;;;;;29753:321:::0;;:::o;9347:100::-;9401:13;9434:5;9427:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9347:100;:::o;11707:201::-;11790:4;792:10;11846:32;792:10;11862:7;11871:6;11846:8;:32::i;:::-;11896:4;11889:11;;;11707:201;;;;;:::o;26138:199::-;2047:13;:11;:13::i;:::-;26242:9:::1;26238:92;26257:18:::0;;::::1;26238:92;;;26314:4;26296:3;:15;26300:7;;26308:1;26300:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26296:15:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26296:15:0;:22;;-1:-1:-1;;26296:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26277:3;::::1;::::0;::::1;:::i;:::-;;;;26238:92;;;;26138:199:::0;;;:::o;27986:618::-;2047:13;:11;:13::i;:::-;28128:15:::1;:22;28110:7;:14;:40;28102:83;;;::::0;-1:-1:-1;;;28102:83:0;;8795:2:1;28102:83:0::1;::::0;::::1;8777:21:1::0;8834:2;8814:18;;;8807:30;8873:32;8853:18;;;8846:60;8923:18;;28102:83:0::1;8593:354:1::0;28102:83:0::1;28221:3;28204:7;:14;:20;28196:87;;;::::0;-1:-1:-1;;;28196:87:0;;9154:2:1;28196:87:0::1;::::0;::::1;9136:21:1::0;9193:2;9173:18;;;9166:30;9232:34;9212:18;;;9205:62;-1:-1:-1;;;9283:18:1;;;9276:52;9345:19;;28196:87:0::1;8952:418:1::0;28196:87:0::1;28396:9;28392:205;28415:7;:14;28411:1;:18;28392:205;;;28450:14;28467:7;28475:1;28467:10;;;;;;;;:::i;:::-;;;;;;;28450:27;;28492:14;28509:15;28525:1;28509:18;;;;;;;;:::i;:::-;;;;;;;28492:35;;28542:43;28558:10;28570:6;28578;28542:15;:43::i;:::-;28435:162;;28431:3;;;;;:::i;:::-;;;;28392:205;;;;27986:618:::0;;:::o;12488:261::-;12585:4;792:10;12643:38;12659:4;792:10;12674:6;12643:15;:38::i;:::-;12692:27;12702:4;12708:2;12712:6;12692:9;:27::i;:::-;-1:-1:-1;12737:4:0;;12488:261;-1:-1:-1;;;;12488:261:0:o;26504:269::-;2047:13;:11;:13::i;:::-;26623:4:::1;26617;26597:13;10564:12:::0;;;10476:108;26597:13:::1;:17;::::0;26613:1:::1;26597:17;:::i;:::-;:24;;;;:::i;:::-;26596:31;;;;:::i;:::-;26586:6;:41;;26578:95;;;::::0;-1:-1:-1;;;26578:95:0;;9972:2:1;26578:95:0::1;::::0;::::1;9954:21:1::0;10011:2;9991:18;;;9984:30;10050:34;10030:18;;;10023:62;-1:-1:-1;;;10101:18:1;;;10094:39;10150:19;;26578:95:0::1;9770:405:1::0;26578:95:0::1;26699:17;:6:::0;26709::::1;26699:17;:::i;:::-;26684:12;:32:::0;;;26732:33:::1;::::0;2970:25:1;;;26732:33:0::1;::::0;2958:2:1;2943:18;26732:33:0::1;;;;;;;;26504:269:::0;:::o;13158:238::-;13246:4;792:10;13302:64;792:10;13318:7;13355:10;13327:25;792:10;13318:7;13327:9;:25::i;:::-;:38;;;;:::i;:::-;13302:8;:64::i;37034:237::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;37130:32:0;::::1;37122:83;;;::::0;-1:-1:-1;;;37122:83:0;;10382:2:1;37122:83:0::1;::::0;::::1;10364:21:1::0;10421:2;10401:18;;;10394:30;10460:34;10440:18;;;10433:62;-1:-1:-1;;;10511:18:1;;;10504:36;10557:19;;37122:83:0::1;10180:402:1::0;37122:83:0::1;37216:17;:47:::0;;-1:-1:-1;;;;;;37216:47:0::1;-1:-1:-1::0;;;;;37216:47:0;;;::::1;::::0;;;::::1;::::0;;37034:237::o;37323:248::-;2047:13;:11;:13::i;:::-;37404:4:::1;37414:1;10748:18:::0;;;;;37448:8:::1;:15:::0;;-1:-1:-1;;;;37448:15:0::1;-1:-1:-1::0;;;37448:15:0::1;::::0;;37474:10:::1;:8;:10::i;:::-;37495:8;:16:::0;;-1:-1:-1;;;;37495:16:0::1;::::0;;37527:36:::1;::::0;37547:15:::1;2970:25:1::0;;37527:36:0::1;::::0;2958:2:1;2943:18;37527:36:0::1;;;;;;;37323:248::o:0;29431:314::-;2047:13;:11;:13::i;:::-;29531:16:::1;:33:::0;;;29575:15:::1;:31:::0;;;29632:34:::1;29593:13:::0;29550:14;29632:34:::1;:::i;:::-;29617:12;:49:::0;;;29701:2:::1;-1:-1:-1::0;29685:18:0::1;29677:60;;;::::0;-1:-1:-1;;;29677:60:0;;7780:2:1;29677:60:0::1;::::0;::::1;7762:21:1::0;7819:2;7799:18;;;7792:30;7858:31;7838:18;;;7831:59;7907:18;;29677:60:0::1;7578:353:1::0;2802:103:0;2047:13;:11;:13::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;25858:154::-;2047:13;:11;:13::i;:::-;25912:14:::1;:22:::0;;-1:-1:-1;;25912:22:0;;::::1;::::0;;;25945:20:::1;:28:::0;;;;::::1;::::0;;25989:15:::1;::::0;::::1;::::0;25929:5:::1;::::0;25989:15:::1;25858:154::o:0;28612:260::-;2047:13;:11;:13::i;:::-;28708:4:::1;28704:104;;28746:6;::::0;-1:-1:-1;;;;;28746:6:0;;::::1;28736:16:::0;;::::1;::::0;28728:68:::1;;;::::0;-1:-1:-1;;;28728:68:0;;11135:2:1;28728:68:0::1;::::0;::::1;11117:21:1::0;11174:2;11154:18;;;11147:30;11213:34;11193:18;;;11186:62;-1:-1:-1;;;11264:18:1;;;11257:37;11311:19;;28728:68:0::1;10933:403:1::0;28728:68:0::1;-1:-1:-1::0;;;;;28818:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;28818:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28612:260::o;36415:381::-;36502:10;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;36533:20:0;::::1;36525:59;;;::::0;-1:-1:-1;;;36525:59:0;;11543:2:1;36525:59:0::1;::::0;::::1;11525:21:1::0;11582:2;11562:18;;;11555:30;11621:28;11601:18;;;11594:56;11667:18;;36525:59:0::1;11341:350:1::0;36525:59:0::1;36622:39;::::0;-1:-1:-1;;;36622:39:0;;36655:4:::1;36622:39;::::0;::::1;984:51:1::0;36595:24:0::1;::::0;-1:-1:-1;;;;;36622:24:0;::::1;::::0;::::1;::::0;957:18:1;;36622:39:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36680:46;::::0;-1:-1:-1;;;36680:46:0;;-1:-1:-1;;;;;12077:32:1;;;36680:46:0::1;::::0;::::1;12059:51:1::0;12126:18;;;12119:34;;;36595:66:0;;-1:-1:-1;36680:23:0;;::::1;::::0;::::1;::::0;12032:18:1;;36680:46:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36742;::::0;;-1:-1:-1;;;;;12077:32:1;;12059:51;;12141:2;12126:18;;12119:34;;;36672:54:0;;-1:-1:-1;36742:46:0::1;::::0;12032:18:1;36742:46:0::1;;;;;;;36514:282;36415:381:::0;;;;:::o;25557:249::-;2047:13;:11;:13::i;:::-;25621::::1;::::0;::::1;::::0;::::1;;;25620:14;25612:50;;;::::0;-1:-1:-1;;;25612:50:0;;12616:2:1;25612:50:0::1;::::0;::::1;12598:21:1::0;12655:2;12635:18;;;12628:30;12694:25;12674:18;;;12667:53;12737:18;;25612:50:0::1;12414:347:1::0;25612:50:0::1;25673:13;:20:::0;;-1:-1:-1;;25704:18:0;;;;;25754:12:::1;25733:18;:33:::0;25782:16:::1;::::0;::::1;::::0;-1:-1:-1;;25782:16:0::1;25557:249::o:0;9566:104::-;9622:13;9655:7;9648:14;;;;;:::i;28880:295::-;2047:13;:11;:13::i;:::-;28989:6:::1;::::0;-1:-1:-1;;;;;28989:6:0;;::::1;28981:14:::0;;::::1;::::0;28973:84:::1;;;::::0;-1:-1:-1;;;28973:84:0;;12968:2:1;28973:84:0::1;::::0;::::1;12950:21:1::0;13007:2;12987:18;;;12980:30;13046:34;13026:18;;;13019:62;13117:27;13097:18;;;13090:55;13162:19;;28973:84:0::1;12766:421:1::0;28973:84:0::1;29070:41;29099:4;29105:5;29070:28;:41::i;:::-;29127:40;::::0;;::::1;;::::0;-1:-1:-1;;;;;29127:40:0;::::1;::::0;::::1;::::0;;;::::1;28880:295:::0;;:::o;13899:436::-;13992:4;792:10;13992:4;14075:25;792:10;14092:7;14075:9;:25::i;:::-;14048:52;;14139:15;14119:16;:35;;14111:85;;;;-1:-1:-1;;;14111:85:0;;13394:2:1;14111:85:0;;;13376:21:1;13433:2;13413:18;;;13406:30;13472:34;13452:18;;;13445:62;-1:-1:-1;;;13523:18:1;;;13516:35;13568:19;;14111:85:0;13192:401:1;14111:85:0;14232:60;14241:5;14248:7;14276:15;14257:16;:34;14232:8;:60::i;10980:193::-;11059:4;792:10;11115:28;792:10;11132:2;11136:6;11115:9;:28::i;30082:182::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;30167:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30167:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30222:34;;1642:41:1;;;30222:34:0::1;::::0;1615:18:1;30222:34:0::1;;;;;;;30082:182:::0;;:::o;27063:284::-;2047:13;:11;:13::i;:::-;27185:4:::1;27179;27159:13;10564:12:::0;;;10476:108;27159:13:::1;:17;::::0;27175:1:::1;27159:17;:::i;:::-;:24;;;;:::i;:::-;27158:31;;;;:::i;:::-;27148:6;:41;;27140:98;;;::::0;-1:-1:-1;;;27140:98:0;;13800:2:1;27140:98:0::1;::::0;::::1;13782:21:1::0;13839:2;13819:18;;;13812:30;13878:34;13858:18;;;13851:62;-1:-1:-1;;;13929:18:1;;;13922:42;13981:19;;27140:98:0::1;13598:408:1::0;27140:98:0::1;27267:17;:6:::0;27277::::1;27267:17;:::i;:::-;27249:15;:35:::0;;;27300:39:::1;::::0;2970:25:1;;;27300:39:0::1;::::0;2958:2:1;2943:18;27300:39:0::1;2824:177:1::0;27417:346:0;2047:13;:11;:13::i;:::-;27540:6:::1;27520:13;10564:12:::0;;;10476:108;27520:13:::1;:17;::::0;27536:1:::1;27520:17;:::i;:::-;:26;;;;:::i;:::-;27507:9;:39;;27499:105;;;::::0;-1:-1:-1;;;27499:105:0;;14213:2:1;27499:105:0::1;::::0;::::1;14195:21:1::0;14252:2;14232:18;;;14225:30;14291:34;14271:18;;;14264:62;-1:-1:-1;;;14342:18:1;;;14335:51;14403:19;;27499:105:0::1;14011:417:1::0;27499:105:0::1;27655:4;27635:13;10564:12:::0;;;10476:108;27635:13:::1;:17;::::0;27651:1:::1;27635:17;:::i;:::-;:24;;;;:::i;:::-;27622:9;:37;;27614:102;;;::::0;-1:-1:-1;;;27614:102:0;;14635:2:1;27614:102:0::1;::::0;::::1;14617:21:1::0;14674:2;14654:18;;;14647:30;14713:34;14693:18;;;14686:62;-1:-1:-1;;;14764:18:1;;;14757:50;14824:19;;27614:102:0::1;14433:416:1::0;27614:102:0::1;27726:18;:30:::0;27417:346::o;26781:274::-;2047:13;:11;:13::i;:::-;26901:4:::1;26895;26875:13;10564:12:::0;;;10476:108;26875:13:::1;:17;::::0;26891:1:::1;26875:17;:::i;:::-;:24;;;;:::i;:::-;26874:31;;;;:::i;:::-;26864:6;:41;;26856:96;;;::::0;-1:-1:-1;;;26856:96:0;;15056:2:1;26856:96:0::1;::::0;::::1;15038:21:1::0;15095:2;15075:18;;;15068:30;15134:34;15114:18;;;15107:62;-1:-1:-1;;;15185:18:1;;;15178:40;15235:19;;26856:96:0::1;14854:406:1::0;26856:96:0::1;26979:17;:6:::0;26989::::1;26979:17;:::i;:::-;26963:13;:33:::0;;;27012:35:::1;::::0;2970:25:1;;;27012:35:0::1;::::0;2958:2:1;2943:18;27012:35:0::1;2824:177:1::0;11236:151:0;-1:-1:-1;;;;;11352:18:0;;;11325:7;11352:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11236:151::o;26020:110::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;26104:11:0;;;::::1;;::::0;;;:3:::1;:11;::::0;;;;:18;;-1:-1:-1;;26104:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26020:110::o;26398:98::-;2047:13;:11;:13::i;:::-;26460:20:::1;:28:::0;;-1:-1:-1;;26460:28:0::1;::::0;;26398:98::o;3060:201::-;2047:13;:11;:13::i;:::-;-1:-1:-1;;;;;3149:22:0;::::1;3141:73;;;::::0;-1:-1:-1;;;3141:73:0;;15467:2:1;3141:73:0::1;::::0;::::1;15449:21:1::0;15506:2;15486:18;;;15479:30;15545:34;15525:18;;;15518:62;-1:-1:-1;;;15596:18:1;;;15589:36;15642:19;;3141:73:0::1;15265:402:1::0;3141:73:0::1;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;36866:160::-;2047:13;:11;:13::i;:::-;36960:58:::1;::::0;36924:12:::1;::::0;36968:10:::1;::::0;36992:21:::1;::::0;36924:12;36960:58;36924:12;36960:58;36992:21;36968:10;36960:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2326:132:::0;2234:6;;-1:-1:-1;;;;;2234:6:0;792:10;2390:23;2382:68;;;;-1:-1:-1;;;2382:68:0;;16084:2:1;2382:68:0;;;16066:21:1;;;16103:18;;;16096:30;16162:34;16142:18;;;16135:62;16214:18;;2382:68:0;15882:356:1;17892:346:0;-1:-1:-1;;;;;17994:19:0;;17986:68;;;;-1:-1:-1;;;17986:68:0;;16445:2:1;17986:68:0;;;16427:21:1;16484:2;16464:18;;;16457:30;16523:34;16503:18;;;16496:62;-1:-1:-1;;;16574:18:1;;;16567:34;16618:19;;17986:68:0;16243:400:1;17986:68:0;-1:-1:-1;;;;;18073:21:0;;18065:68;;;;-1:-1:-1;;;18065:68:0;;16850:2:1;18065:68:0;;;16832:21:1;16889:2;16869:18;;;16862:30;16928:34;16908:18;;;16901:62;-1:-1:-1;;;16979:18:1;;;16972:32;17021:19;;18065:68:0;16648:398:1;18065:68:0;-1:-1:-1;;;;;18146:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18198:32;;2970:25:1;;;18198:32:0;;2943:18:1;18198:32:0;;;;;;;17892:346;;;:::o;14805:806::-;-1:-1:-1;;;;;14902:18:0;;14894:68;;;;-1:-1:-1;;;14894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14981:16:0;;14973:64;;;;-1:-1:-1;;;14973:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15123:15:0;;15101:19;15123:15;;;;;;;;;;;15157:21;;;;15149:72;;;;-1:-1:-1;;;15149:72:0;;18063:2:1;15149:72:0;;;18045:21:1;18102:2;18082:18;;;18075:30;18141:34;18121:18;;;18114:62;-1:-1:-1;;;18192:18:1;;;18185:36;18238:19;;15149:72:0;17861:402:1;15149:72:0;-1:-1:-1;;;;;15257:15:0;;;:9;:15;;;;;;;;;;;15275:20;;;15257:38;;15475:13;;;;;;;;;;:23;;;;;;15527:26;;2970:25:1;;;15475:13:0;;15527:26;;2943:18:1;15527:26:0;;;;;;;15566:37;27986:618;18529:419;18630:24;18657:25;18667:5;18674:7;18657:9;:25::i;:::-;18630:52;;-1:-1:-1;;18697:16:0;:37;18693:248;;18779:6;18759:16;:26;;18751:68;;;;-1:-1:-1;;;18751:68:0;;18470:2:1;18751:68:0;;;18452:21:1;18509:2;18489:18;;;18482:30;18548:31;18528:18;;;18521:59;18597:18;;18751:68:0;18268:353:1;18751:68:0;18863:51;18872:5;18879:7;18907:6;18888:16;:25;18863:8;:51::i;30272:3806::-;-1:-1:-1;;;;;30372:18:0;;30364:68;;;;-1:-1:-1;;;30364:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30451:16:0;;30443:64;;;;-1:-1:-1;;;30443:64:0;;;;;;;:::i;:::-;30535:1;30526:6;:10;30518:52;;;;-1:-1:-1;;;30518:52:0;;18828:2:1;30518:52:0;;;18810:21:1;18867:2;18847:18;;;18840:30;18906:31;18886:18;;;18879:59;18955:18;;30518:52:0;18626:353:1;30518:52:0;30587:13;;;;;;;30583:132;;-1:-1:-1;;;;;30624:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30653:23:0;;;;;;:19;:23;;;;;;;;30624:52;30616:87;;;;-1:-1:-1;;;30616:87:0;;19186:2:1;30616:87:0;;;19168:21:1;19225:2;19205:18;;;19198:30;-1:-1:-1;;;19244:18:1;;;19237:52;19306:18;;30616:87:0;18984:346:1;30616:87:0;-1:-1:-1;;;;;30736:9:0;;;;;;:3;:9;;;;;;;;30735:10;:22;;;;-1:-1:-1;;;;;;30750:7:0;;;;;;:3;:7;;;;;;;;30749:8;30735:22;30727:105;;;;-1:-1:-1;;;30727:105:0;;19537:2:1;30727:105:0;;;19519:21:1;19576:2;19556:18;;;19549:30;19615:34;19595:18;;;19588:62;19686:34;19666:18;;;19659:62;-1:-1:-1;;;19737:19:1;;;19730:37;19784:19;;30727:105:0;19335:474:1;30727:105:0;30848:14;;;;30845:1653;;;2234:6;;-1:-1:-1;;;;;30882:15:0;;;2234:6;;30882:15;;;;:32;;-1:-1:-1;2234:6:0;;-1:-1:-1;;;;;30901:13:0;;;2234:6;;30901:13;;30882:32;:52;;;;-1:-1:-1;;;;;;30918:16:0;;;;30882:52;:77;;;;-1:-1:-1;;;;;;30938:21:0;;30952:6;30938:21;;30882:77;:107;;;;-1:-1:-1;;;;;;30964:25:0;;;;;;:19;:25;;;;;;;;30963:26;30882:107;:135;;;;-1:-1:-1;;;;;;30994:23:0;;;;;;:19;:23;;;;;;;;30993:24;30882:135;30878:1609;;;31175:20;;;;31171:506;;;31237:9;;-1:-1:-1;;;;;31223:24:0;;;31237:9;;31223:24;;;;:49;;-1:-1:-1;31265:6:0;;-1:-1:-1;;;;;31251:21:0;;;31265:6;;31251:21;;31223:49;31219:439;;;31350:16;31365:1;31350:12;:16;:::i;:::-;31337:9;31308:39;;;;:28;:39;;;;;;:58;:113;;;;-1:-1:-1;31405:16:0;31420:1;31405:12;:16;:::i;:::-;-1:-1:-1;;;;;31370:32:0;;;;;;:28;:32;;;;;;:51;31308:113;31300:179;;;;-1:-1:-1;;;31300:179:0;;20149:2:1;31300:179:0;;;20131:21:1;20188:2;20168:18;;;20161:30;20227:34;20207:18;;;20200:62;-1:-1:-1;;;20278:18:1;;;20271:51;20339:19;;31300:179:0;19947:417:1;31300:179:0;31535:9;31506:39;;;;:28;:39;;;;;;31548:12;31506:54;;;;-1:-1:-1;;;;;31587:32:0;;;;;;:47;31219:439;-1:-1:-1;;;;;31733:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;31769:35:0;;;;;;:31;:35;;;;;;;;31768:36;31733:71;31729:743;;;31851:12;;31841:6;:22;;31833:75;;;;-1:-1:-1;;;31833:75:0;;20571:2:1;31833:75:0;;;20553:21:1;20610:2;20590:18;;;20583:30;20649:34;20629:18;;;20622:62;-1:-1:-1;;;20700:18:1;;;20693:38;20748:19;;31833:75:0;20369:404:1;31833:75:0;31969:15;;-1:-1:-1;;;;;10748:18:0;;10721:7;10748:18;;;;;;;;;;;31943:22;;:6;:22;:::i;:::-;:41;;31935:78;;;;-1:-1:-1;;;31935:78:0;;20980:2:1;31935:78:0;;;20962:21:1;21019:2;20999:18;;;20992:30;-1:-1:-1;;;21038:18:1;;;21031:54;21102:18;;31935:78:0;20778:348:1;31935:78:0;31729:743;;;-1:-1:-1;;;;;32089:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;32123:37:0;;;;;;:31;:37;;;;;;;;32122:38;32089:71;32085:387;;;32207:13;;32197:6;:23;;32189:78;;;;-1:-1:-1;;;32189:78:0;;21333:2:1;32189:78:0;;;21315:21:1;21372:2;21352:18;;;21345:30;21411:34;21391:18;;;21384:62;-1:-1:-1;;;21462:18:1;;;21455:40;21512:19;;32189:78:0;21131:406:1;32085:387:0;-1:-1:-1;;;;;32315:35:0;;;;;;:31;:35;;;;;;;;32310:162;;32408:15;;-1:-1:-1;;;;;10748:18:0;;10721:7;10748:18;;;;;;;;;;;32382:22;;:6;:22;:::i;:::-;:41;;32374:78;;;;-1:-1:-1;;;32374:78:0;;20980:2:1;32374:78:0;;;20962:21:1;21019:2;20999:18;;;20992:30;-1:-1:-1;;;21038:18:1;;;21031:54;21102:18;;32374:78:0;20778:348:1;32374:78:0;32559:4;32510:28;10748:18;;;;;;;;;;;32617;;32593:42;;;;;;;32651:22;;-1:-1:-1;32662:11:0;;;;;;;32651:22;:35;;;;-1:-1:-1;32678:8:0;;-1:-1:-1;;;32678:8:0;;;;32677:9;32651:35;:71;;;;-1:-1:-1;;;;;;32691:31:0;;;;;;:25;:31;;;;;;;;32690:32;32651:71;:101;;;;-1:-1:-1;;;;;;32727:25:0;;;;;;:19;:25;;;;;;;;32726:26;32651:101;:129;;;;-1:-1:-1;;;;;;32757:23:0;;;;;;:19;:23;;;;;;;;32756:24;32651:129;32648:236;;;32797:8;:15;;-1:-1:-1;;;;32797:15:0;-1:-1:-1;;;32797:15:0;;;32829:10;:8;:10::i;:::-;32856:8;:16;;-1:-1:-1;;;;32856:16:0;;;32648:236;-1:-1:-1;;;;;33014:25:0;;32896:12;33014:25;;;:19;:25;;;;;;32911:4;;33014:25;;;:52;;-1:-1:-1;;;;;;33043:23:0;;;;;;:19;:23;;;;;;;;33014:52;33011:99;;;-1:-1:-1;33093:5:0;33011:99;33122:12;33226:7;33223:802;;;-1:-1:-1;;;;;33277:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;33326:1;33310:13;;:17;33277:50;33273:608;;;33379:3;33363:13;;33354:6;:22;;;;:::i;:::-;:28;;;;:::i;:::-;33347:35;;33449:13;;33430:16;;33423:4;:23;;;;:::i;:::-;:39;;;;:::i;:::-;33401:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33531:13:0;;33511:17;;33504:24;;:4;:24;:::i;:::-;:40;;;;:::i;:::-;33481:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;33273:608:0;;-1:-1:-1;33273:608:0;;-1:-1:-1;;;;;33607:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;33657:1;33642:12;;:16;33607:51;33604:277;;;33707:3;33692:12;;33683:6;:21;;;;:::i;:::-;:27;;;;:::i;:::-;33676:34;;33773:12;;33755:15;;33748:4;:22;;;;:::i;:::-;:37;;;;:::i;:::-;33726:18;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;33853:12:0;;33834:16;;33827:23;;:4;:23;:::i;:::-;:38;;;;:::i;:::-;33804:19;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;33604:277:0;33900:8;;33897:89;;33928:42;33944:4;33958;33965;33928:15;:42::i;:::-;33999:14;34009:4;33999:14;;:::i;:::-;;;33223:802;34037:33;34053:4;34059:2;34063:6;34037:15;:33::i;:::-;30351:3727;;;;30272:3806;;;:::o;35182:1225::-;35265:4;35221:23;10748:18;;;;;;;;;;;35221:50;;35282:25;35331:19;;35310:18;;:40;;;;:::i;:::-;35282:68;-1:-1:-1;35366:20:0;;;:46;;-1:-1:-1;35390:22:0;;35366:46;35363:60;;;35415:7;;35182:1225::o;35363:60::-;35456:18;;:23;;35477:2;35456:23;:::i;:::-;35438:15;:41;35435:113;;;35513:18;;:23;;35534:2;35513:23;:::i;:::-;35495:41;;35435:113;35560:12;35634:23;35719:1;35699:17;35678:18;;35660:15;:36;;;;:::i;:::-;:56;;;;:::i;:::-;:60;;;;:::i;:::-;35634:86;-1:-1:-1;35733:51:0;35750:33;35634:86;35750:15;:33;:::i;:::-;35733:16;:51::i;:::-;35983:18;;35818:21;;;;35797:18;;35983:20;;36002:1;;35983:20;:::i;:::-;35962:42;;:17;:42;:::i;:::-;35939:19;;35926:32;;:10;:32;:::i;:::-;:79;;;;:::i;:::-;35899:106;-1:-1:-1;36018:35:0;35899:106;36018:35;;:::i;:::-;36087:1;36066:18;:22;;;36099:19;:23;36018:35;-1:-1:-1;36138:19:0;;;;;:42;;;36179:1;36161:15;:19;36138:42;36135:119;;;36196:46;36209:15;36226;36196:12;:46::i;:::-;36269:21;:25;36266:134;;36331:17;;36323:65;;-1:-1:-1;;;;;36331:17:0;;;;36362:21;;36323:65;;;;36362:21;36331:17;36323:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;35182:1225:0:o;3421:191::-;3514:6;;;-1:-1:-1;;;;;3531:17:0;;;-1:-1:-1;;;;;;3531:17:0;;;;;;;3564:40;;3514:6;;;3531:17;3514:6;;3564:40;;3495:16;;3564:40;3484:128;3421:191;:::o;29183:240::-;-1:-1:-1;;;;;29266:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;29266:39:0;;;;;;;29318;29266:31;:39;29318:26;:39::i;34084:573::-;34236:16;;;34250:1;34236:16;;;;;;;;34212:21;;34236:16;;;;;;;;;;-1:-1:-1;34236:16:0;34212:40;;34281:4;34263;34268:1;34263:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34263:23:0;;;:7;;;;;;;;;;:23;;;;34307:9;;:16;;;-1:-1:-1;;;34307:16:0;;;;:9;;;;;:14;;:16;;;;;34263:7;;34307:16;;;;;:9;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34297:4;34302:1;34297:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34297:26:0;;;:7;;;;;;;;;:26;34368:9;;34336:56;;34353:4;;34368:9;34380:11;34336:8;:56::i;:::-;34431:9;;:218;;-1:-1:-1;;;34431:218:0;;-1:-1:-1;;;;;34431:9:0;;;;:60;;:218;;34506:11;;34431:9;;34576:4;;34603;;34623:15;;34431:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34139:518;34084:573;:::o;34665:509::-;34845:9;;34813:56;;34830:4;;-1:-1:-1;;;;;34845:9:0;34857:11;34813:8;:56::i;:::-;34912:9;;:254;;-1:-1:-1;;;34912:254:0;;34978:4;34912:254;;;23124:34:1;23174:18;;;23167:34;;;34912:9:0;23217:18:1;;;23210:34;;;23260:18;;;23253:34;35118:6:0;23303:19:1;;;23296:44;35140:15:0;23356:19:1;;;23349:35;-1:-1:-1;;;;;34912:9:0;;;;:25;;34945:9;;23058:19:1;;34912:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;34665:509;;:::o;27771:207::-;-1:-1:-1;;;;;27859:39:0;;;;;;:31;:39;;;;;;;;;:52;;-1:-1:-1;;27859:52:0;;;;;;;;;;27927:43;;23874:51:1;;;23941:18;;;23934:50;27927:43:0;;23847:18:1;27927:43:0;;;;;;;27771:207;;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;1046:131::-;-1:-1:-1;;;;;1121:31:1;;1111:42;;1101:70;;1167:1;1164;1157:12;1182:315;1250:6;1258;1311:2;1299:9;1290:7;1286:23;1282:32;1279:52;;;1327:1;1324;1317:12;1279:52;1366:9;1353:23;1385:31;1410:5;1385:31;:::i;:::-;1435:5;1487:2;1472:18;;;;1459:32;;-1:-1:-1;;;1182:315:1:o;1694:247::-;1753:6;1806:2;1794:9;1785:7;1781:23;1777:32;1774:52;;;1822:1;1819;1812:12;1774:52;1861:9;1848:23;1880:31;1905:5;1880:31;:::i;:::-;1930:5;1694:247;-1:-1:-1;;;1694:247:1:o;1946:118::-;2032:5;2025:13;2018:21;2011:5;2008:32;1998:60;;2054:1;2051;2044:12;2069:750;2161:6;2169;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2286:9;2273:23;2315:18;2356:2;2348:6;2345:14;2342:34;;;2372:1;2369;2362:12;2342:34;2410:6;2399:9;2395:22;2385:32;;2455:7;2448:4;2444:2;2440:13;2436:27;2426:55;;2477:1;2474;2467:12;2426:55;2517:2;2504:16;2543:2;2535:6;2532:14;2529:34;;;2559:1;2556;2549:12;2529:34;2614:7;2607:4;2597:6;2594:1;2590:14;2586:2;2582:23;2578:34;2575:47;2572:67;;;2635:1;2632;2625:12;2572:67;2666:4;2658:13;;;;-1:-1:-1;2690:6:1;-1:-1:-1;;2731:20:1;;2718:34;2761:28;2718:34;2761:28;:::i;:::-;2808:5;2798:15;;;2069:750;;;;;:::o;3006:127::-;3067:10;3062:3;3058:20;3055:1;3048:31;3098:4;3095:1;3088:15;3122:4;3119:1;3112:15;3138:275;3209:2;3203:9;3274:2;3255:13;;-1:-1:-1;;3251:27:1;3239:40;;3309:18;3294:34;;3330:22;;;3291:62;3288:88;;;3356:18;;:::i;:::-;3392:2;3385:22;3138:275;;-1:-1:-1;3138:275:1:o;3418:183::-;3478:4;3511:18;3503:6;3500:30;3497:56;;;3533:18;;:::i;:::-;-1:-1:-1;3578:1:1;3574:14;3590:4;3570:25;;3418:183::o;3606:662::-;3660:5;3713:3;3706:4;3698:6;3694:17;3690:27;3680:55;;3731:1;3728;3721:12;3680:55;3767:6;3754:20;3793:4;3817:60;3833:43;3873:2;3833:43;:::i;:::-;3817:60;:::i;:::-;3911:15;;;3997:1;3993:10;;;;3981:23;;3977:32;;;3942:12;;;;4021:15;;;4018:35;;;4049:1;4046;4039:12;4018:35;4085:2;4077:6;4073:15;4097:142;4113:6;4108:3;4105:15;4097:142;;;4179:17;;4167:30;;4217:12;;;;4130;;4097:142;;;-1:-1:-1;4257:5:1;3606:662;-1:-1:-1;;;;;;3606:662:1:o;4273:1215::-;4391:6;4399;4452:2;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4508:9;4495:23;4537:18;4578:2;4570:6;4567:14;4564:34;;;4594:1;4591;4584:12;4564:34;4632:6;4621:9;4617:22;4607:32;;4677:7;4670:4;4666:2;4662:13;4658:27;4648:55;;4699:1;4696;4689:12;4648:55;4735:2;4722:16;4757:4;4781:60;4797:43;4837:2;4797:43;:::i;4781:60::-;4875:15;;;4957:1;4953:10;;;;4945:19;;4941:28;;;4906:12;;;;4981:19;;;4978:39;;;5013:1;5010;5003:12;4978:39;5037:11;;;;5057:217;5073:6;5068:3;5065:15;5057:217;;;5153:3;5140:17;5170:31;5195:5;5170:31;:::i;:::-;5214:18;;5090:12;;;;5252;;;;5057:217;;;5293:5;-1:-1:-1;;5336:18:1;;5323:32;;-1:-1:-1;;5367:16:1;;;5364:36;;;5396:1;5393;5386:12;5364:36;;5419:63;5474:7;5463:8;5452:9;5448:24;5419:63;:::i;:::-;5409:73;;;4273:1215;;;;;:::o;5493:456::-;5570:6;5578;5586;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5713:31;5738:5;5713:31;:::i;:::-;5763:5;-1:-1:-1;5820:2:1;5805:18;;5792:32;5833:33;5792:32;5833:33;:::i;:::-;5493:456;;5885:7;;-1:-1:-1;;;5939:2:1;5924:18;;;;5911:32;;5493:456::o;5954:180::-;6013:6;6066:2;6054:9;6045:7;6041:23;6037:32;6034:52;;;6082:1;6079;6072:12;6034:52;-1:-1:-1;6105:23:1;;5954:180;-1:-1:-1;5954:180:1:o;6536:382::-;6601:6;6609;6662:2;6650:9;6641:7;6637:23;6633:32;6630:52;;;6678:1;6675;6668:12;6630:52;6717:9;6704:23;6736:31;6761:5;6736:31;:::i;:::-;6786:5;-1:-1:-1;6843:2:1;6828:18;;6815:32;6856:30;6815:32;6856:30;:::i;:::-;6905:7;6895:17;;;6536:382;;;;;:::o;6923:388::-;6991:6;6999;7052:2;7040:9;7031:7;7027:23;7023:32;7020:52;;;7068:1;7065;7058:12;7020:52;7107:9;7094:23;7126:31;7151:5;7126:31;:::i;:::-;7176:5;-1:-1:-1;7233:2:1;7218:18;;7205:32;7246:33;7205:32;7246:33;:::i;7316:127::-;7377:10;7372:3;7368:20;7365:1;7358:31;7408:4;7405:1;7398:15;7432:4;7429:1;7422:15;7448:125;7513:9;;;7534:10;;;7531:36;;;7547:18;;:::i;7936:380::-;8015:1;8011:12;;;;8058;;;8079:61;;8133:4;8125:6;8121:17;8111:27;;8079:61;8186:2;8178:6;8175:14;8155:18;8152:38;8149:161;;8232:10;8227:3;8223:20;8220:1;8213:31;8267:4;8264:1;8257:15;8295:4;8292:1;8285:15;8149:161;;7936:380;;;:::o;8321:127::-;8382:10;8377:3;8373:20;8370:1;8363:31;8413:4;8410:1;8403:15;8437:4;8434:1;8427:15;8453:135;8492:3;8513:17;;;8510:43;;8533:18;;:::i;:::-;-1:-1:-1;8580:1:1;8569:13;;8453:135::o;9375:168::-;9448:9;;;9479;;9496:15;;;9490:22;;9476:37;9466:71;;9517:18;;:::i;9548:217::-;9588:1;9614;9604:132;;9658:10;9653:3;9649:20;9646:1;9639:31;9693:4;9690:1;9683:15;9721:4;9718:1;9711:15;9604:132;-1:-1:-1;9750:9:1;;9548:217::o;11696:184::-;11766:6;11819:2;11807:9;11798:7;11794:23;11790:32;11787:52;;;11835:1;11832;11825:12;11787:52;-1:-1:-1;11858:16:1;;11696:184;-1:-1:-1;11696:184:1:o;12164:245::-;12231:6;12284:2;12272:9;12263:7;12259:23;12255:32;12252:52;;;12300:1;12297;12290:12;12252:52;12332:9;12326:16;12351:28;12373:5;12351:28;:::i;17051:401::-;17253:2;17235:21;;;17292:2;17272:18;;;17265:30;17331:34;17326:2;17311:18;;17304:62;-1:-1:-1;;;17397:2:1;17382:18;;17375:35;17442:3;17427:19;;17051:401::o;17457:399::-;17659:2;17641:21;;;17698:2;17678:18;;;17671:30;17737:34;17732:2;17717:18;;17710:62;-1:-1:-1;;;17803:2:1;17788:18;;17781:33;17846:3;17831:19;;17457:399::o;19814:128::-;19881:9;;;19902:11;;;19899:37;;;19916:18;;:::i;21542:251::-;21612:6;21665:2;21653:9;21644:7;21640:23;21636:32;21633:52;;;21681:1;21678;21671:12;21633:52;21713:9;21707:16;21732:31;21757:5;21732:31;:::i;21798:980::-;22060:4;22108:3;22097:9;22093:19;22139:6;22128:9;22121:25;22165:2;22203:6;22198:2;22187:9;22183:18;22176:34;22246:3;22241:2;22230:9;22226:18;22219:31;22270:6;22305;22299:13;22336:6;22328;22321:22;22374:3;22363:9;22359:19;22352:26;;22413:2;22405:6;22401:15;22387:29;;22434:1;22444:195;22458:6;22455:1;22452:13;22444:195;;;22523:13;;-1:-1:-1;;;;;22519:39:1;22507:52;;22614:15;;;;22579:12;;;;22555:1;22473:9;22444:195;;;-1:-1:-1;;;;;;;22695:32:1;;;;22690:2;22675:18;;22668:60;-1:-1:-1;;;22759:3:1;22744:19;22737:35;22656:3;21798:980;-1:-1:-1;;;21798:980:1:o;23395:306::-;23483:6;23491;23499;23552:2;23540:9;23531:7;23527:23;23523:32;23520:52;;;23568:1;23565;23558:12;23520:52;23597:9;23591:16;23581:26;;23647:2;23636:9;23632:18;23626:25;23616:35;;23691:2;23680:9;23676:18;23670:25;23660:35;;23395:306;;;;;:::o
Swarm Source
ipfs://6bffdec1c9b962841eecf73786e891534efbf13973a026b70528e6ee1053a24c
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.