Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
DeFi
Overview
Max Total Supply
1,000,000,000,000 PeepsPay
Holders
428 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
41,195,798 PeepsPayValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PeepsPay
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Multiple files format)
pragma solidity ^0.8.4; // SPDX-License-Identifier: Apache-2.0 import "./SafeMath.sol"; import "./Address.sol"; import "./RewardsToken.sol"; import "./IUniswapV2Factory.sol"; import "./IUniswapV2Router.sol"; import "./IRewardsTracker.sol"; contract PeepsPay is RewardsToken { using SafeMath for uint256; using Address for address; // Supply, limits and fees uint256 private constant REWARDS_TRACKER_IDENTIFIER = 4; uint256 private constant TOTAL_SUPPLY = 1000000000000 * (10**9); uint256 public maxTxAmount = TOTAL_SUPPLY.mul(2).div(1000); // 2% uint256 private platformFee = 75; // 0.75% uint256 private _previousPlatformFee = platformFee; uint256 public devFee = 525; // 5.25% uint256 private _previousDevFee = devFee; uint256 public rewardsFee = 600; // 6% uint256 private _previousRewardsFee = rewardsFee; uint256 public launchSellFee = 775; // 7.75% uint256 private _previousLaunchSellFee = launchSellFee; address payable private _platformWalletAddress = payable(0xF83Ba7773Acc6F87Ea53Ff8B6B9C6a979fef63AD); address payable private _devWalletAddress = payable(0x4327B5B2F7CcAA445816Da43150697f1Bc5A892d); uint256 public launchSellFeeDeadline = 0; IRewardsTracker private _rewardsTracker; // Fallback to generic transfer. On by default bool public useGenericTransfer = true; // Prepared for launch bool private preparedForLaunch = false; // Exclusions mapping(address => bool) private _isExcludedFromFee; mapping(address => bool) private _isExcludedFromMaxTx; // Token -> ETH swap support IUniswapV2Router public uniswapV2Router; address public uniswapV2Pair; bool currentlySwapping; bool public swapAndRedirectEthFeesEnabled = true; uint256 private minTokensBeforeSwap = 100000000 * 10**9; // Events and modifiers event MinTokensBeforeSwapUpdated(uint256 minTokensBeforeSwap); event SwapAndRedirectEthFeesUpdated(bool enabled); event OnSwapAndRedirectEthFees( uint256 tokensSwapped, uint256 ethToDevWallet ); event MaxTxAmountUpdated(uint256 maxTxAmount); event GenericTransferChanged(bool useGenericTransfer); event ExcludeFromFees(address wallet); event IncludeInFees(address wallet); event DevWalletUpdated(address newDevWallet); event RewardsTrackerUpdated(address newRewardsTracker); event RouterUpdated(address newRouterAddress); event FeesChanged(uint256 newDevFee, uint256 newRewardsFee); event LaunchFeeUpdated(uint256 newLaunchSellFee); modifier lockTheSwap() { currentlySwapping = true; _; currentlySwapping = false; } constructor() ERC20("PeepsPay", "PeepsPay") { IUniswapV2Router _uniswapV2Router = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // Create a uniswap pair for this new token uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); // set the rest of the contract variables uniswapV2Router = _uniswapV2Router; // mint supply _mint(owner(), TOTAL_SUPPLY); // exclude owner and this contract from fee _isExcludedFromFee[owner()] = true; _isExcludedFromFee[address(this)] = true; // internal exclude from max tx _isExcludedFromMaxTx[owner()] = true; _isExcludedFromMaxTx[address(this)] = true; // exclude from rewards excludeFromRewards(address(this)); excludeFromRewards(address(0xdead)); excludeFromRewards(uniswapV2Pair); } function decimals() public view virtual override returns (uint8) { return 9; } function _transfer( address from, address to, uint256 amount ) internal virtual override { // launch preparation require(preparedForLaunch || _msgSender() == owner(), "Contract has not been prepared for launch and user is not owner"); // fallback implementation if (useGenericTransfer) { super._transfer(from, to, amount); return; } if ( !_isExcludedFromMaxTx[from] && !_isExcludedFromMaxTx[to] // by default false ) { require( amount <= maxTxAmount, "Transfer amount exceeds the maxTxAmount" ); } // sell penalty uint256 baseDevFee = devFee; if (launchSellFeeDeadline >= block.timestamp && to == uniswapV2Pair) { devFee = devFee.add(launchSellFee); } // start swap to ETH uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minTokensBeforeSwap; if ( overMinTokenBalance && !currentlySwapping && from != uniswapV2Pair && swapAndRedirectEthFeesEnabled ) { // add dev fee swapAndRedirectEthFees(contractTokenBalance); } if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { removeAllFee(); } (uint256 tTransferAmount, uint256 tFee) = _getValues(amount); _balances[from] = _balances[from].sub(amount); _balances[to] = _balances[to].add(tTransferAmount); _takeFee(tFee); if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { restoreAllFee(); } // restore dev fee devFee = baseDevFee; emit Transfer(from, to, tTransferAmount); } //to recieve ETH from uniswapV2Router when swaping receive() external payable {} function _getValues(uint256 tAmount) private view returns (uint256, uint256) { uint256 tFee = calculateFee(tAmount); uint256 tTransferAmount = tAmount.sub(tFee); return (tTransferAmount, tFee); } function _takeFee(uint256 fee) private { _balances[address(this)] = _balances[address(this)].add(fee); } function calculateFee(uint256 _amount) private view returns (uint256) { uint256 totalFee = devFee.add(rewardsFee).add(platformFee); return _amount.mul(totalFee).div(10000); } function removeAllFee() private { if (devFee == 0 && rewardsFee == 0 && platformFee == 0) return; _previousPlatformFee = platformFee; _previousDevFee = devFee; _previousRewardsFee = rewardsFee; platformFee = 0; devFee = 0; rewardsFee = 0; } function restoreAllFee() private { platformFee = _previousPlatformFee; devFee = _previousDevFee; rewardsFee = _previousRewardsFee; } function swapAndRedirectEthFees(uint256 contractTokenBalance) private lockTheSwap { uint256 totalRedirectFee = devFee.add(rewardsFee).add(platformFee); if (totalRedirectFee == 0) return; // capture the contract's current ETH balance. // this is so that we can capture exactly the amount of ETH that the // swap creates, and not make the fee events include any ETH that // has been manually sent to the contract uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(contractTokenBalance); uint256 newBalance = address(this).balance.sub(initialBalance); if (newBalance > 0) { // send to platform wallet uint256 platformBalance = newBalance.mul(platformFee).div(totalRedirectFee); sendEthToWallet(_platformWalletAddress, platformBalance); // // send to rewards wallet // uint256 rewardsBalance = newBalance.mul(rewardsFee).div(totalRedirectFee); if (rewardsBalance > 0 && address(_rewardsTracker) != address(0)) { try _rewardsTracker.addAllocation{value: rewardsBalance}(REWARDS_TRACKER_IDENTIFIER) {} catch {} } // // send to dev wallet // uint256 devBalance = newBalance.mul(devFee).div(totalRedirectFee); sendEthToWallet(_devWalletAddress, devBalance); emit OnSwapAndRedirectEthFees(contractTokenBalance, newBalance); } } function sendEthToWallet(address wallet, uint256 amount) private { if (amount > 0) { payable(wallet).transfer(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] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function prepareForLaunch() external onlyOwner { require(!preparedForLaunch, "Already prepared for launch"); // ready for launch preparedForLaunch = true; // sell penalty for the first 24 hours launchSellFeeDeadline = block.timestamp + 3 days; } function setUseGenericTransfer(bool genericTransfer) external onlyOwner { useGenericTransfer = genericTransfer; emit GenericTransferChanged(genericTransfer); } // for 0.5% input 5, for 1% input 10 function setMaxTxPercent(uint256 newMaxTx) external onlyOwner { require(newMaxTx >= 5, "Max TX should be above 0.5%"); maxTxAmount = TOTAL_SUPPLY.mul(newMaxTx).div(1000); emit MaxTxAmountUpdated(maxTxAmount); } function isExcludedFromFee(address account) external view returns (bool) { return _isExcludedFromFee[account]; } function excludeFromFee(address account) external onlyOwner { _isExcludedFromFee[account] = true; emit ExcludeFromFees(account); } function includeInFee(address account) external onlyOwner { _isExcludedFromFee[account] = false; emit IncludeInFees(account); } function setFees(uint256 newDevFee, uint256 newRewardsFee) external onlyOwner { require(newDevFee <= 1000 && newRewardsFee <= 1000, "Fees exceed maximum allowed value"); devFee = newDevFee; rewardsFee = newRewardsFee; emit FeesChanged(newDevFee, newRewardsFee); } function setLaunchSellFee(uint256 newLaunchSellFee) external onlyOwner { require(newLaunchSellFee <= 2500, "Maximum launch sell fee is 25%"); launchSellFee = newLaunchSellFee; emit LaunchFeeUpdated(newLaunchSellFee); } function setDevWallet(address payable newDevWallet) external onlyOwner { _devWalletAddress = newDevWallet; emit DevWalletUpdated(newDevWallet); } function setRewardsTracker(address payable newRewardsTracker) external onlyOwner { _rewardsTracker = IRewardsTracker(newRewardsTracker); emit RewardsTrackerUpdated(newRewardsTracker); } function setRouterAddress(address newRouter) external onlyOwner { IUniswapV2Router _newUniswapRouter = IUniswapV2Router(newRouter); uniswapV2Pair = IUniswapV2Factory(_newUniswapRouter.factory()) .createPair(address(this), _newUniswapRouter.WETH()); uniswapV2Router = _newUniswapRouter; emit RouterUpdated(newRouter); } function setSwapAndRedirectEthFeesEnabled(bool enabled) external onlyOwner { swapAndRedirectEthFeesEnabled = enabled; emit SwapAndRedirectEthFeesUpdated(enabled); } function setMinTokensBeforeSwap(uint256 minTokens) external onlyOwner { minTokensBeforeSwap = minTokens * 10**9; emit MinTokensBeforeSwapUpdated(minTokens); } // emergency claim functions function manualSwap() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSend() external onlyOwner { uint256 contractEthBalance = address(this).balance; sendEthToWallet(_devWalletAddress, contractEthBalance); } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue( address target, bytes memory data, uint256 weiValue, string memory errorMessage ) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: weiValue}( data ); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT import "./IERC20.sol"; import "./IERC20Metadata.sol"; import "./Context.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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 { using SafeMath for uint256; using Address for address; mapping(address => uint256) internal _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 internal _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT import "./IERC20.sol"; /** * @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); }
pragma solidity 0.8.4; // SPDX-License-Identifier: Apache-2.0 interface IRewardsTracker { function addAllocation(uint identifier) external payable; }
pragma solidity 0.8.4; // SPDX-License-Identifier: MIT interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); }
pragma solidity 0.8.4; // SPDX-License-Identifier: MIT interface IUniswapV2Router { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
pragma solidity 0.8.4; // SPDX-License-Identifier: MIT import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() external virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) external virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: Apache-2.0 import "./ERC20.sol"; import "./Ownable.sol"; abstract contract RewardsToken is ERC20, Ownable { address[] private excludedFromRewards; mapping(address => bool) private isAddressExcluded; event ExcludeFromRewards(address wallet); event IncludeInRewards(address wallet); function deleteExcluded(uint index) internal { require(index < excludedFromRewards.length, "Index is greater than array length"); excludedFromRewards[index] = excludedFromRewards[excludedFromRewards.length - 1]; excludedFromRewards.pop(); } function getExcludedBalances() internal view returns (uint256) { uint256 totalExcludedHoldings = 0; for (uint i = 0; i < excludedFromRewards.length; i++) { totalExcludedHoldings += balanceOf(excludedFromRewards[i]); } return totalExcludedHoldings; } function excludeFromRewards(address wallet) public onlyOwner { require(!isAddressExcluded[wallet], "Address is already excluded from rewards"); excludedFromRewards.push(wallet); isAddressExcluded[wallet] = true; emit ExcludeFromRewards(wallet); } function includeInRewards(address wallet) external onlyOwner { require(isAddressExcluded[wallet], "Address is not excluded from rewards"); for (uint i = 0; i < excludedFromRewards.length; i++) { if (excludedFromRewards[i] == wallet) { isAddressExcluded[wallet] = false; deleteExcluded(i); break; } } emit IncludeInRewards(wallet); } function isExcludedFromRewards(address wallet) external view returns (bool) { return isAddressExcluded[wallet]; } function getAllExcludedFromRewards() external view returns (address[] memory) { return excludedFromRewards; } function getRewardsSupply() public view returns (uint256) { return _totalSupply - getExcludedBalances(); } }
pragma solidity ^0.8.4; // SPDX-License-Identifier: MIT /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
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":"address","name":"newDevWallet","type":"address"}],"name":"DevWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludeFromRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDevFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"FeesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"useGenericTransfer","type":"bool"}],"name":"GenericTransferChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"IncludeInRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"LaunchFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minTokensBeforeSwap","type":"uint256"}],"name":"MinTokensBeforeSwapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethToDevWallet","type":"uint256"}],"name":"OnSwapAndRedirectEthFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRewardsTracker","type":"address"}],"name":"RewardsTrackerUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newRouterAddress","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndRedirectEthFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"excludeFromRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllExcludedFromRewards","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRewardsSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeInFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"includeInRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromRewards","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchSellFeeDeadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","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":"prepareForLaunch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newDevFee","type":"uint256"},{"internalType":"uint256","name":"newRewardsFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchSellFee","type":"uint256"}],"name":"setLaunchSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTx","type":"uint256"}],"name":"setMaxTxPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"minTokens","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newRewardsTracker","type":"address"}],"name":"setRewardsTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRouter","type":"address"}],"name":"setRouterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapAndRedirectEthFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"genericTransfer","type":"bool"}],"name":"setUseGenericTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndRedirectEthFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"useGenericTransfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052620000436103e86200002f6002683635c9adc5dea000006200047f60201b620017071790919060201c565b6200051360201b6200178d1790919060201c565b600855604b6009819055600a5561020d600b819055600c55610258600d819055600e55610307600f819055601055601180546001600160a01b031990811673f83ba7773acc6f87ea53ff8b6b9c6a979fef63ad1790915560128054909116734327b5b2f7ccaa445816da43150697f1bc5a892d17905560006013556014805461ffff60a01b1916600160a01b1790556018805460ff60a81b1916600160a81b17905567016345785d8a0000601955348015620000fe57600080fd5b50604080518082018252600880825267506565707350617960c01b60208084018281528551808701909652928552840152815191929162000142916003916200086e565b508051620001589060049060208401906200086e565b50505060006200016d6200055d60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200020e57600080fd5b505afa15801562000223573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000249919062000914565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200029257600080fd5b505afa158015620002a7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cd919062000914565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200031657600080fd5b505af11580156200032b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000351919062000914565b601880546001600160a01b03199081166001600160a01b039384161790915560178054909116838316179055600554620003969116683635c9adc5dea0000062000561565b600160156000620003af6005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff199586161790553081526015909252812080549092166001908117909255601690620004086005546001600160a01b031690565b6001600160a01b0316815260208082019290925260409081016000908120805494151560ff1995861617905530808252601690935220805490921660011790915562000454906200065d565b6200046161dead6200065d565b60185462000478906001600160a01b03166200065d565b5062000a44565b60008262000490575060006200050d565b60006200049e8385620009cf565b905082620004ad8583620009ae565b146200050a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084015b60405180910390fd5b90505b92915050565b60006200050a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620007cf60201b60201c565b3390565b6001600160a01b038216620005b95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000501565b620005d5816002546200080b60201b620017cf1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000608918390620017cf6200080b821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620006b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000501565b6001600160a01b03811660009081526007602052604090205460ff1615620007355760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b606482015260840162000501565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd6910160405180910390a150565b60008183620007f35760405162461bcd60e51b81526004016200050191906200093d565b506000620008028486620009ae565b95945050505050565b6000806200081a838562000993565b9050838110156200050a5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000501565b8280546200087c90620009f1565b90600052602060002090601f016020900481019282620008a05760008555620008eb565b82601f10620008bb57805160ff1916838001178555620008eb565b82800160010185558215620008eb579182015b82811115620008eb578251825591602001919060010190620008ce565b50620008f9929150620008fd565b5090565b5b80821115620008f95760008155600101620008fe565b60006020828403121562000926578081fd5b81516001600160a01b03811681146200050a578182fd5b6000602080835283518082850152825b818110156200096b578581018301518582016040015282016200094d565b818111156200097d5783604083870101525b50601f01601f1916929092016040019392505050565b60008219821115620009a957620009a962000a2e565b500190565b600082620009ca57634e487b7160e01b81526012600452602481fd5b500490565b6000816000190483118215151615620009ec57620009ec62000a2e565b500290565b600181811c9082168062000a0657607f821691505b6020821081141562000a2857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6128dd8062000a546000396000f3fe6080604052600436106102605760003560e01c80636827e76411610144578063ada46d0a116100b6578063dd62ed3e1161007a578063dd62ed3e14610728578063e89bcca21461076e578063ea2f0b371461078e578063f2fde38b146107ae578063f4293890146107ce578063fffa1dd9146107e357600080fd5b8063ada46d0a14610690578063af01f2b2146106b2578063b609995e146106c8578063ba385abb146106e8578063d543dbeb1461070857600080fd5b80638da5cb5b116101085780638da5cb5b146105e757806395d89b411461060557806398850b641461061a578063a1ab19a31461063b578063a457c2d714610650578063a9059cbb1461067057600080fd5b80636827e7641461055057806370a0823114610566578063715018a61461059c5780638421b507146105b15780638c0b5e22146105d157600080fd5b806326b6308d116101dd578063437823ec116101a1578063437823ec1461048c57806348a46473146104ac57806349bd5a5e146104cc57806351bc3c85146104ec5780635342acb414610501578063549593631461053a57600080fd5b806326b6308d146103fa5780632bb14e1d1461041a578063313ce56714610430578063395093511461044c57806341cb87fc1461046c57600080fd5b8063113201fa11610224578063113201fa146103425780631694505e1461036357806318160ddd1461039b5780631f53ac02146103ba57806323b872dd146103da57600080fd5b806306fdde031461026c578063095ea7b3146102975780630b78f9c0146102c75780630e832273146102e9578063111e03761461032257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107f8565b60405161028e9190612687565b60405180910390f35b3480156102a357600080fd5b506102b76102b23660046125ad565b61088a565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e2366004612610565b6108a1565b005b3480156102f557600080fd5b506102b76103043660046124fd565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032e57600080fd5b506102e761033d3660046124fd565b610986565b34801561034e57600080fd5b506018546102b790600160a81b900460ff1681565b34801561036f57600080fd5b50601754610383906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b3480156103a757600080fd5b506002545b60405190815260200161028e565b3480156103c657600080fd5b506102e76103d53660046124fd565b610ac5565b3480156103e657600080fd5b506102b76103f536600461256d565b610b3d565b34801561040657600080fd5b506102e76104153660046125d8565b610ba6565b34801561042657600080fd5b506103ac600d5481565b34801561043c57600080fd5b506040516009815260200161028e565b34801561045857600080fd5b506102b76104673660046125ad565b610c1d565b34801561047857600080fd5b506102e76104873660046124fd565b610c53565b34801561049857600080fd5b506102e76104a73660046124fd565b610e51565b3480156104b857600080fd5b506102e76104c73660046125f8565b610ecf565b3480156104d857600080fd5b50601854610383906001600160a01b031681565b3480156104f857600080fd5b506102e7610f3a565b34801561050d57600080fd5b506102b761051c3660046124fd565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561054657600080fd5b506103ac600f5481565b34801561055c57600080fd5b506103ac600b5481565b34801561057257600080fd5b506103ac6105813660046124fd565b6001600160a01b031660009081526020819052604090205490565b3480156105a857600080fd5b506102e7610f80565b3480156105bd57600080fd5b506102e76105cc3660046125f8565b610ff4565b3480156105dd57600080fd5b506103ac60085481565b3480156105f357600080fd5b506005546001600160a01b0316610383565b34801561061157600080fd5b506102816110a5565b34801561062657600080fd5b506014546102b790600160a01b900460ff1681565b34801561064757600080fd5b506102e76110b4565b34801561065c57600080fd5b506102b761066b3660046125ad565b61115d565b34801561067c57600080fd5b506102b761068b3660046125ad565b6111ac565b34801561069c57600080fd5b506106a56111b9565b60405161028e9190612674565b3480156106be57600080fd5b506103ac60135481565b3480156106d457600080fd5b506102e76106e33660046124fd565b61121a565b3480156106f457600080fd5b506102e76107033660046124fd565b611385565b34801561071457600080fd5b506102e76107233660046125f8565b6113fd565b34801561073457600080fd5b506103ac610743366004612535565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077a57600080fd5b506102e76107893660046125d8565b6114cc565b34801561079a57600080fd5b506102e76107a93660046124fd565b611543565b3480156107ba57600080fd5b506102e76107c93660046124fd565b6115be565b3480156107da57600080fd5b506102e76116a9565b3480156107ef57600080fd5b506103ac6116eb565b606060038054610807906127b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127b9565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b600061089733848461182e565b5060015b92915050565b6005546001600160a01b031633146108d45760405162461bcd60e51b81526004016108cb906126da565b60405180910390fd5b6103e882111580156108e857506103e88111155b61093e5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016108cb565b600b829055600d81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109b05760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811660009081526007602052604090205460ff1615610a2a5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016108cb565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610aef5760405162461bcd60e51b81526004016108cb906126da565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610aba565b6000610b4a848484611953565b610b9c8433610b978560405180606001604052806028815260200161285b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ce1565b61182e565b5060019392505050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b81526004016108cb906126da565b60188054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610aba90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610897918590610b9790866117cf565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016108cb906126da565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbb57600080fd5b505afa158015610ccf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf39190612519565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d739190612519565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610dbb57600080fd5b505af1158015610dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df39190612519565b601880546001600160a01b03199081166001600160a01b03938416179091556017805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200161097a565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b038116600081815260156020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610aba565b6005546001600160a01b03163314610ef95760405162461bcd60e51b81526004016108cb906126da565b610f0781633b9aca00612783565b6019556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610aba565b6005546001600160a01b03163314610f645760405162461bcd60e51b81526004016108cb906126da565b30600090815260208190526040902054610f7d81611d1b565b50565b6005546001600160a01b03163314610faa5760405162461bcd60e51b81526004016108cb906126da565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461101e5760405162461bcd60e51b81526004016108cb906126da565b6109c48111156110705760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016108cb565b600f8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610aba565b606060048054610807906127b9565b6005546001600160a01b031633146110de5760405162461bcd60e51b81526004016108cb906126da565b601454600160a81b900460ff16156111385760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016108cb565b6014805460ff60a81b1916600160a81b179055611158426203f48061274b565b601355565b60006108973384610b9785604051806060016040528060258152602001612883602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ce1565b6000610897338484611953565b6060600680548060200260200160405190810160405280929190818152602001828054801561088057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116111f3575050505050905090565b6005546001600160a01b031633146112445760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811660009081526007602052604090205460ff166112b85760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016108cb565b60005b60065481101561134b57816001600160a01b0316600682815481106112f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611339576001600160a01b0382166000908152600760205260409020805460ff1916905561133481611ea0565b61134b565b80611343816127ee565b9150506112bb565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610aba565b6005546001600160a01b031633146113af5760405162461bcd60e51b81526004016108cb906126da565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610aba565b6005546001600160a01b031633146114275760405162461bcd60e51b81526004016108cb906126da565b60058110156114785760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016108cb565b6114976103e8611491683635c9adc5dea0000084611707565b9061178d565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610aba565b6005546001600160a01b031633146114f65760405162461bcd60e51b81526004016108cb906126da565b60148054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610aba90831515815260200190565b6005546001600160a01b0316331461156d5760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b038116600081815260156020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610aba565b6005546001600160a01b031633146115e85760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811661164d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cb565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116d35760405162461bcd60e51b81526004016108cb906126da565b6012544790610f7d906001600160a01b031682611fd6565b60006116f5612016565b60025461170291906127a2565b905090565b6000826117165750600061089b565b60006117228385612783565b90508261172f8583612763565b146117865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108cb565b9392505050565b600061178683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612091565b6000806117dc838561274b565b9050838110156117865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108cb565b6001600160a01b0383166118905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108cb565b6001600160a01b0382166118f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108cb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601454600160a81b900460ff168061197557506005546001600160a01b031633145b6119e75760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016108cb565b601454600160a01b900460ff1615611a0957611a048383836120bf565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611a4b57506001600160a01b03821660009081526016602052604090205460ff16155b15611ab257600854811115611ab25760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016108cb565b600b546013544211801590611ad457506018546001600160a01b038481169116145b15611aec57600f54600b54611ae8916117cf565b600b555b3060009081526020819052604090205460195481108015908190611b1a5750601854600160a01b900460ff16155b8015611b3457506018546001600160a01b03878116911614155b8015611b495750601854600160a81b900460ff165b15611b5757611b5782612242565b6001600160a01b03861660009081526015602052604090205460ff1680611b9657506001600160a01b03851660009081526015602052604090205460ff165b15611ba357611ba36123f0565b600080611baf86612435565b6001600160a01b038a166000908152602081905260409020549193509150611bd7908761245c565b6001600160a01b03808a166000908152602081905260408082209390935590891681522054611c0690836117cf565b6001600160a01b038816600090815260208190526040902055611c288161249e565b6001600160a01b03881660009081526015602052604090205460ff1680611c6757506001600160a01b03871660009081526015602052604090205460ff165b15611c8357611c83600a54600955600c54600b55600e54600d55565b84600b81905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ccf91815260200190565b60405180910390a35050505050505050565b60008184841115611d055760405162461bcd60e51b81526004016108cb9190612687565b506000611d1284866127a2565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d5e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611db257600080fd5b505afa158015611dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dea9190612519565b81600181518110611e0b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601754611e31913091168461182e565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac94790611e6a90859060009086903090429060040161270f565b600060405180830381600087803b158015611e8457600080fd5b505af1158015611e98573d6000803e3d6000fd5b505050505050565b6006548110611efc5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016108cb565b60068054611f0c906001906127a2565b81548110611f2a57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611f6457634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611fb157634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612012576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611a04573d6000803e3d6000fd5b5050565b600080805b60065481101561208b5761206d6006828154811061204957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b612077908361274b565b915080612083816127ee565b91505061201b565b50919050565b600081836120b25760405162461bcd60e51b81526004016108cb9190612687565b506000611d128486612763565b6001600160a01b0383166121235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108cb565b6001600160a01b0382166121855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108cb565b6121c281604051806060016040528060268152602001612835602691396001600160a01b0386166000908152602081905260409020549190611ce1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121f190826117cf565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611946565b6018805460ff60a01b1916600160a01b179055600954600d54600b54600092612276929091612270916117cf565b906117cf565b90508061228357506123e0565b4761228d83611d1b565b6000612299478361245c565b905080156123dc5760006122bc846114916009548561170790919063ffffffff16565b6011549091506122d5906001600160a01b031682611fd6565b60006122f085611491600d548661170790919063ffffffff16565b905060008111801561230c57506014546001600160a01b031615155b1561236b5760145460405163febd221b60e01b81526004808201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561235757600080fd5b505af193505050508015612369575060015b505b600061238686611491600b548761170790919063ffffffff16565b60125490915061239f906001600160a01b031682611fd6565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506018805460ff60a01b19169055565b600b541580156124005750600d54155b801561240c5750600954155b1561241357565b60098054600a55600b8054600c55600d8054600e556000928390559082905555565b6000806000612443846124cb565b90506000612451858361245c565b959194509092505050565b600061178683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ce1565b306000908152602081905260409020546124b890826117cf565b3060009081526020819052604090205550565b6000806124eb600954612270600d54600b546117cf90919063ffffffff16565b90506117866127106114918584611707565b60006020828403121561250e578081fd5b81356117868161281f565b60006020828403121561252a578081fd5b81516117868161281f565b60008060408385031215612547578081fd5b82356125528161281f565b915060208301356125628161281f565b809150509250929050565b600080600060608486031215612581578081fd5b833561258c8161281f565b9250602084013561259c8161281f565b929592945050506040919091013590565b600080604083850312156125bf578182fd5b82356125ca8161281f565b946020939093013593505050565b6000602082840312156125e9578081fd5b81358015158114611786578182fd5b600060208284031215612609578081fd5b5035919050565b60008060408385031215612622578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156126695781516001600160a01b031687529582019590820190600101612644565b509495945050505050565b6020815260006117866020830184612631565b6000602080835283518082850152825b818110156126b357858101830151858201604001528201612697565b818111156126c45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a06040820152600061272e60a0830186612631565b6001600160a01b0394909416606083015250608001529392505050565b6000821982111561275e5761275e612809565b500190565b60008261277e57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561279d5761279d612809565b500290565b6000828210156127b4576127b4612809565b500390565b600181811c908216806127cd57607f821691505b6020821081141561208b57634e487b7160e01b600052602260045260246000fd5b600060001982141561280257612802612809565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f7d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122021e1923c940255a78eff26df45efb62c8aa8d4326739a33a1dc15d40d2414faf64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106102605760003560e01c80636827e76411610144578063ada46d0a116100b6578063dd62ed3e1161007a578063dd62ed3e14610728578063e89bcca21461076e578063ea2f0b371461078e578063f2fde38b146107ae578063f4293890146107ce578063fffa1dd9146107e357600080fd5b8063ada46d0a14610690578063af01f2b2146106b2578063b609995e146106c8578063ba385abb146106e8578063d543dbeb1461070857600080fd5b80638da5cb5b116101085780638da5cb5b146105e757806395d89b411461060557806398850b641461061a578063a1ab19a31461063b578063a457c2d714610650578063a9059cbb1461067057600080fd5b80636827e7641461055057806370a0823114610566578063715018a61461059c5780638421b507146105b15780638c0b5e22146105d157600080fd5b806326b6308d116101dd578063437823ec116101a1578063437823ec1461048c57806348a46473146104ac57806349bd5a5e146104cc57806351bc3c85146104ec5780635342acb414610501578063549593631461053a57600080fd5b806326b6308d146103fa5780632bb14e1d1461041a578063313ce56714610430578063395093511461044c57806341cb87fc1461046c57600080fd5b8063113201fa11610224578063113201fa146103425780631694505e1461036357806318160ddd1461039b5780631f53ac02146103ba57806323b872dd146103da57600080fd5b806306fdde031461026c578063095ea7b3146102975780630b78f9c0146102c75780630e832273146102e9578063111e03761461032257600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107f8565b60405161028e9190612687565b60405180910390f35b3480156102a357600080fd5b506102b76102b23660046125ad565b61088a565b604051901515815260200161028e565b3480156102d357600080fd5b506102e76102e2366004612610565b6108a1565b005b3480156102f557600080fd5b506102b76103043660046124fd565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561032e57600080fd5b506102e761033d3660046124fd565b610986565b34801561034e57600080fd5b506018546102b790600160a81b900460ff1681565b34801561036f57600080fd5b50601754610383906001600160a01b031681565b6040516001600160a01b03909116815260200161028e565b3480156103a757600080fd5b506002545b60405190815260200161028e565b3480156103c657600080fd5b506102e76103d53660046124fd565b610ac5565b3480156103e657600080fd5b506102b76103f536600461256d565b610b3d565b34801561040657600080fd5b506102e76104153660046125d8565b610ba6565b34801561042657600080fd5b506103ac600d5481565b34801561043c57600080fd5b506040516009815260200161028e565b34801561045857600080fd5b506102b76104673660046125ad565b610c1d565b34801561047857600080fd5b506102e76104873660046124fd565b610c53565b34801561049857600080fd5b506102e76104a73660046124fd565b610e51565b3480156104b857600080fd5b506102e76104c73660046125f8565b610ecf565b3480156104d857600080fd5b50601854610383906001600160a01b031681565b3480156104f857600080fd5b506102e7610f3a565b34801561050d57600080fd5b506102b761051c3660046124fd565b6001600160a01b031660009081526015602052604090205460ff1690565b34801561054657600080fd5b506103ac600f5481565b34801561055c57600080fd5b506103ac600b5481565b34801561057257600080fd5b506103ac6105813660046124fd565b6001600160a01b031660009081526020819052604090205490565b3480156105a857600080fd5b506102e7610f80565b3480156105bd57600080fd5b506102e76105cc3660046125f8565b610ff4565b3480156105dd57600080fd5b506103ac60085481565b3480156105f357600080fd5b506005546001600160a01b0316610383565b34801561061157600080fd5b506102816110a5565b34801561062657600080fd5b506014546102b790600160a01b900460ff1681565b34801561064757600080fd5b506102e76110b4565b34801561065c57600080fd5b506102b761066b3660046125ad565b61115d565b34801561067c57600080fd5b506102b761068b3660046125ad565b6111ac565b34801561069c57600080fd5b506106a56111b9565b60405161028e9190612674565b3480156106be57600080fd5b506103ac60135481565b3480156106d457600080fd5b506102e76106e33660046124fd565b61121a565b3480156106f457600080fd5b506102e76107033660046124fd565b611385565b34801561071457600080fd5b506102e76107233660046125f8565b6113fd565b34801561073457600080fd5b506103ac610743366004612535565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561077a57600080fd5b506102e76107893660046125d8565b6114cc565b34801561079a57600080fd5b506102e76107a93660046124fd565b611543565b3480156107ba57600080fd5b506102e76107c93660046124fd565b6115be565b3480156107da57600080fd5b506102e76116a9565b3480156107ef57600080fd5b506103ac6116eb565b606060038054610807906127b9565b80601f0160208091040260200160405190810160405280929190818152602001828054610833906127b9565b80156108805780601f1061085557610100808354040283529160200191610880565b820191906000526020600020905b81548152906001019060200180831161086357829003601f168201915b5050505050905090565b600061089733848461182e565b5060015b92915050565b6005546001600160a01b031633146108d45760405162461bcd60e51b81526004016108cb906126da565b60405180910390fd5b6103e882111580156108e857506103e88111155b61093e5760405162461bcd60e51b815260206004820152602160248201527f4665657320657863656564206d6178696d756d20616c6c6f7765642076616c756044820152606560f81b60648201526084016108cb565b600b829055600d81905560408051838152602081018390527f64f84976d9c917a44796104a59950fdbd9b3c16a5dd348b546d738301f6bd06891015b60405180910390a15050565b6005546001600160a01b031633146109b05760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811660009081526007602052604090205460ff1615610a2a5760405162461bcd60e51b815260206004820152602860248201527f4164647265737320697320616c7265616479206578636c756465642066726f6d604482015267207265776172647360c01b60648201526084016108cb565b6006805460018082019092557ff652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f0180546001600160a01b0319166001600160a01b038416908117909155600081815260076020908152604091829020805460ff1916909417909355519081527f9dc0c5d829ba95d4a3aa3e40791b3e0ff125f876788532b9f7f6eb543d8dfbd691015b60405180910390a150565b6005546001600160a01b03163314610aef5760405162461bcd60e51b81526004016108cb906126da565b601280546001600160a01b0319166001600160a01b0383169081179091556040519081527f31bb1993faff4f8409d7baad771f861e093ef4ce2c92c6e0cb10b82d1c7324cb90602001610aba565b6000610b4a848484611953565b610b9c8433610b978560405180606001604052806028815260200161285b602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190611ce1565b61182e565b5060019392505050565b6005546001600160a01b03163314610bd05760405162461bcd60e51b81526004016108cb906126da565b60188054821515600160a81b0260ff60a81b199091161790556040517fd9fca2a469120637ae54e43ab68dfdcd9354db52d615dea3d3a66a085e6f41b990610aba90831515815260200190565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610897918590610b9790866117cf565b6005546001600160a01b03163314610c7d5760405162461bcd60e51b81526004016108cb906126da565b6000819050806001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbb57600080fd5b505afa158015610ccf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf39190612519565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610d3b57600080fd5b505afa158015610d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d739190612519565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b158015610dbb57600080fd5b505af1158015610dcf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df39190612519565b601880546001600160a01b03199081166001600160a01b03938416179091556017805490911683831617905560405190831681527f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc809060200161097a565b6005546001600160a01b03163314610e7b5760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b038116600081815260156020908152604091829020805460ff1916600117905590519182527f57a00f76b5f242fb1e04b0b514a6974665a5b07bce45e39f36dabff4a042d9369101610aba565b6005546001600160a01b03163314610ef95760405162461bcd60e51b81526004016108cb906126da565b610f0781633b9aca00612783565b6019556040518181527f5948780118f41f7c4577ae4619d5cbd064057bd8562d9f7b7e60324053375c0090602001610aba565b6005546001600160a01b03163314610f645760405162461bcd60e51b81526004016108cb906126da565b30600090815260208190526040902054610f7d81611d1b565b50565b6005546001600160a01b03163314610faa5760405162461bcd60e51b81526004016108cb906126da565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b0316331461101e5760405162461bcd60e51b81526004016108cb906126da565b6109c48111156110705760405162461bcd60e51b815260206004820152601e60248201527f4d6178696d756d206c61756e63682073656c6c2066656520697320323525000060448201526064016108cb565b600f8190556040518181527fc799be5eb19a1a6d6ba7368d21e2bc367c8a335e4a07cd3d954482e6f714d3c590602001610aba565b606060048054610807906127b9565b6005546001600160a01b031633146110de5760405162461bcd60e51b81526004016108cb906126da565b601454600160a81b900460ff16156111385760405162461bcd60e51b815260206004820152601b60248201527f416c726561647920707265706172656420666f72206c61756e6368000000000060448201526064016108cb565b6014805460ff60a81b1916600160a81b179055611158426203f48061274b565b601355565b60006108973384610b9785604051806060016040528060258152602001612883602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190611ce1565b6000610897338484611953565b6060600680548060200260200160405190810160405280929190818152602001828054801561088057602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116111f3575050505050905090565b6005546001600160a01b031633146112445760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811660009081526007602052604090205460ff166112b85760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f74206578636c756465642066726f6d207265776044820152636172647360e01b60648201526084016108cb565b60005b60065481101561134b57816001600160a01b0316600682815481106112f057634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415611339576001600160a01b0382166000908152600760205260409020805460ff1916905561133481611ea0565b61134b565b80611343816127ee565b9150506112bb565b506040516001600160a01b03821681527f87434094d24a90fbd9a8ffcf2be9818d237c06a12d126296bc1ea7d58959433490602001610aba565b6005546001600160a01b031633146113af5760405162461bcd60e51b81526004016108cb906126da565b601480546001600160a01b0319166001600160a01b0383169081179091556040519081527f535be0bbc71c839ded01277ab57f29f2e810c1ff0255bb938d7cb8e96ac8ca1a90602001610aba565b6005546001600160a01b031633146114275760405162461bcd60e51b81526004016108cb906126da565b60058110156114785760405162461bcd60e51b815260206004820152601b60248201527f4d61782054582073686f756c642062652061626f766520302e3525000000000060448201526064016108cb565b6114976103e8611491683635c9adc5dea0000084611707565b9061178d565b60088190556040519081527f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf90602001610aba565b6005546001600160a01b031633146114f65760405162461bcd60e51b81526004016108cb906126da565b60148054821515600160a01b0260ff60a01b199091161790556040517f7d952115fd41bb443db2ae9cde6670e8dd72fefb507b7a4e0156c57e439afaf590610aba90831515815260200190565b6005546001600160a01b0316331461156d5760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b038116600081815260156020908152604091829020805460ff1916905590519182527f346f6c42af1ce4b7d7951f3fa40a2fb1e78c80ab0f3d76fb4f9fec269d568f0d9101610aba565b6005546001600160a01b031633146115e85760405162461bcd60e51b81526004016108cb906126da565b6001600160a01b03811661164d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cb565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146116d35760405162461bcd60e51b81526004016108cb906126da565b6012544790610f7d906001600160a01b031682611fd6565b60006116f5612016565b60025461170291906127a2565b905090565b6000826117165750600061089b565b60006117228385612783565b90508261172f8583612763565b146117865760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b60648201526084016108cb565b9392505050565b600061178683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612091565b6000806117dc838561274b565b9050838110156117865760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016108cb565b6001600160a01b0383166118905760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108cb565b6001600160a01b0382166118f15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108cb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b601454600160a81b900460ff168061197557506005546001600160a01b031633145b6119e75760405162461bcd60e51b815260206004820152603f60248201527f436f6e747261637420686173206e6f74206265656e207072657061726564206660448201527f6f72206c61756e636820616e642075736572206973206e6f74206f776e65720060648201526084016108cb565b601454600160a01b900460ff1615611a0957611a048383836120bf565b505050565b6001600160a01b03831660009081526016602052604090205460ff16158015611a4b57506001600160a01b03821660009081526016602052604090205460ff16155b15611ab257600854811115611ab25760405162461bcd60e51b815260206004820152602760248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178546044820152661e105b5bdd5b9d60ca1b60648201526084016108cb565b600b546013544211801590611ad457506018546001600160a01b038481169116145b15611aec57600f54600b54611ae8916117cf565b600b555b3060009081526020819052604090205460195481108015908190611b1a5750601854600160a01b900460ff16155b8015611b3457506018546001600160a01b03878116911614155b8015611b495750601854600160a81b900460ff165b15611b5757611b5782612242565b6001600160a01b03861660009081526015602052604090205460ff1680611b9657506001600160a01b03851660009081526015602052604090205460ff165b15611ba357611ba36123f0565b600080611baf86612435565b6001600160a01b038a166000908152602081905260409020549193509150611bd7908761245c565b6001600160a01b03808a166000908152602081905260408082209390935590891681522054611c0690836117cf565b6001600160a01b038816600090815260208190526040902055611c288161249e565b6001600160a01b03881660009081526015602052604090205460ff1680611c6757506001600160a01b03871660009081526015602052604090205460ff165b15611c8357611c83600a54600955600c54600b55600e54600d55565b84600b81905550866001600160a01b0316886001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ccf91815260200190565b60405180910390a35050505050505050565b60008184841115611d055760405162461bcd60e51b81526004016108cb9190612687565b506000611d1284866127a2565b95945050505050565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611d5e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015611db257600080fd5b505afa158015611dc6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dea9190612519565b81600181518110611e0b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b039283166020918202929092010152601754611e31913091168461182e565b60175460405163791ac94760e01b81526001600160a01b039091169063791ac94790611e6a90859060009086903090429060040161270f565b600060405180830381600087803b158015611e8457600080fd5b505af1158015611e98573d6000803e3d6000fd5b505050505050565b6006548110611efc5760405162461bcd60e51b815260206004820152602260248201527f496e6465782069732067726561746572207468616e206172726179206c656e676044820152610e8d60f31b60648201526084016108cb565b60068054611f0c906001906127a2565b81548110611f2a57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600680546001600160a01b039092169183908110611f6457634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055506006805480611fb157634e487b7160e01b600052603160045260246000fd5b600082815260209020810160001990810180546001600160a01b031916905501905550565b8015612012576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611a04573d6000803e3d6000fd5b5050565b600080805b60065481101561208b5761206d6006828154811061204957634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101546001600160a01b03168252819052604090205490565b612077908361274b565b915080612083816127ee565b91505061201b565b50919050565b600081836120b25760405162461bcd60e51b81526004016108cb9190612687565b506000611d128486612763565b6001600160a01b0383166121235760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108cb565b6001600160a01b0382166121855760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108cb565b6121c281604051806060016040528060268152602001612835602691396001600160a01b0386166000908152602081905260409020549190611ce1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546121f190826117cf565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101611946565b6018805460ff60a01b1916600160a01b179055600954600d54600b54600092612276929091612270916117cf565b906117cf565b90508061228357506123e0565b4761228d83611d1b565b6000612299478361245c565b905080156123dc5760006122bc846114916009548561170790919063ffffffff16565b6011549091506122d5906001600160a01b031682611fd6565b60006122f085611491600d548661170790919063ffffffff16565b905060008111801561230c57506014546001600160a01b031615155b1561236b5760145460405163febd221b60e01b81526004808201526001600160a01b039091169063febd221b9083906024016000604051808303818588803b15801561235757600080fd5b505af193505050508015612369575060015b505b600061238686611491600b548761170790919063ffffffff16565b60125490915061239f906001600160a01b031682611fd6565b60408051888152602081018690527f3736f4ec17d19b9b4f0fbeeb377db969da082d70e2e16221f77d5b321570e8c7910160405180910390a15050505b5050505b506018805460ff60a01b19169055565b600b541580156124005750600d54155b801561240c5750600954155b1561241357565b60098054600a55600b8054600c55600d8054600e556000928390559082905555565b6000806000612443846124cb565b90506000612451858361245c565b959194509092505050565b600061178683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ce1565b306000908152602081905260409020546124b890826117cf565b3060009081526020819052604090205550565b6000806124eb600954612270600d54600b546117cf90919063ffffffff16565b90506117866127106114918584611707565b60006020828403121561250e578081fd5b81356117868161281f565b60006020828403121561252a578081fd5b81516117868161281f565b60008060408385031215612547578081fd5b82356125528161281f565b915060208301356125628161281f565b809150509250929050565b600080600060608486031215612581578081fd5b833561258c8161281f565b9250602084013561259c8161281f565b929592945050506040919091013590565b600080604083850312156125bf578182fd5b82356125ca8161281f565b946020939093013593505050565b6000602082840312156125e9578081fd5b81358015158114611786578182fd5b600060208284031215612609578081fd5b5035919050565b60008060408385031215612622578182fd5b50508035926020909101359150565b6000815180845260208085019450808401835b838110156126695781516001600160a01b031687529582019590820190600101612644565b509495945050505050565b6020815260006117866020830184612631565b6000602080835283518082850152825b818110156126b357858101830151858201604001528201612697565b818111156126c45783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b85815284602082015260a06040820152600061272e60a0830186612631565b6001600160a01b0394909416606083015250608001529392505050565b6000821982111561275e5761275e612809565b500190565b60008261277e57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561279d5761279d612809565b500290565b6000828210156127b4576127b4612809565b500390565b600181811c908216806127cd57607f821691505b6020821081141561208b57634e487b7160e01b600052602260045260246000fd5b600060001982141561280257612802612809565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610f7d57600080fdfe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122021e1923c940255a78eff26df45efb62c8aa8d4326739a33a1dc15d40d2414faf64736f6c63430008040033
Deployed Bytecode Sourcemap
243:12285:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4265:166;;;;;;;;;;-1:-1:-1;4265:166:2;;;;;:::i;:::-;;:::i;:::-;;;4404:14:12;;4397:22;4379:41;;4367:2;4352:18;4265:166:2;4334:92:12;10431:299:9;;;;;;;;;;-1:-1:-1;10431:299:9;;;;;:::i;:::-;;:::i;:::-;;1694:125:10;;;;;;;;;;-1:-1:-1;1694:125:10;;;;;:::i;:::-;-1:-1:-1;;;;;1787:25:10;1764:4;1787:25;;;:17;:25;;;;;;;;;1694:125;952:282;;;;;;;;;;-1:-1:-1;952:282:10;;;;;:::i;:::-;;:::i;1758:48:9:-;;;;;;;;;;-1:-1:-1;1758:48:9;;;;-1:-1:-1;;;1758:48:9;;;;;;1650:39;;;;;;;;;;-1:-1:-1;1650:39:9;;;;-1:-1:-1;;;;;1650:39:9;;;;;;-1:-1:-1;;;;;3404:32:12;;;3386:51;;3374:2;3359:18;1650:39:9;3341:102:12;3256:106:2;;;;;;;;;;-1:-1:-1;3343:12:2;;3256:106;;;12091:25:12;;;12079:2;12064:18;3256:106:2;12046:76:12;10988:185:9;;;;;;;;;;-1:-1:-1;10988:185:9;;;;;:::i;:::-;;:::i;4898:347:2:-;;;;;;;;;;-1:-1:-1;4898:347:2;;;;;:::i;:::-;;:::i;11786:184:9:-;;;;;;;;;;-1:-1:-1;11786:184:9;;;;;:::i;:::-;;:::i;782:31::-;;;;;;;;;;;;;;;;3728:90;;;;;;;;;;-1:-1:-1;3728:90:9;;3810:1;13109:36:12;;13097:2;13082:18;3728:90:9;13064:87:12;5640:215:2;;;;;;;;;;-1:-1:-1;5640:215:2;;;;;:::i;:::-;;:::i;11414:366:9:-;;;;;;;;;;-1:-1:-1;11414:366:9;;;;;:::i;:::-;;:::i;10122:150::-;;;;;;;;;;-1:-1:-1;10122:150:9;;;;;:::i;:::-;;:::i;11976:178::-;;;;;;;;;;-1:-1:-1;11976:178:9;;;;;:::i;:::-;;:::i;1695:28::-;;;;;;;;;;-1:-1:-1;1695:28:9;;;;-1:-1:-1;;;;;1695:28:9;;;12197:151;;;;;;;;;;;;;:::i;9992:124::-;;;;;;;;;;-1:-1:-1;9992:124:9;;;;;:::i;:::-;-1:-1:-1;;;;;10082:27:9;10059:4;10082:27;;;:18;:27;;;;;;;;;9992:124;880:34;;;;;;;;;;;;;;;;689:27;;;;;;;;;;;;;;;;3420:125:2;;;;;;;;;;-1:-1:-1;3420:125:2;;;;;:::i;:::-;-1:-1:-1;;;;;3520:18:2;3494:7;3520:18;;;;;;;;;;;;3420:125;1696:147:8;;;;;;;;;;;;;:::i;10736:246:9:-;;;;;;;;;;-1:-1:-1;10736:246:9;;;;;:::i;:::-;;:::i;513:58::-;;;;;;;;;;;;;;;;1073:77:8;;;;;;;;;;-1:-1:-1;1137:6:8;;-1:-1:-1;;;;;1137:6:8;1073:77;;2379:102:2;;;;;;;;;;;;;:::i;1358:37:9:-;;;;;;;;;;-1:-1:-1;1358:37:9;;;;-1:-1:-1;;;1358:37:9;;;;;;9217:291;;;;;;;;;;;;;:::i;6342:266:2:-;;;;;;;;;;-1:-1:-1;6342:266:2;;;;;:::i;:::-;;:::i;3748:172::-;;;;;;;;;;-1:-1:-1;3748:172:2;;;;;:::i;:::-;;:::i;1829:121:10:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1214:40:9:-;;;;;;;;;;;;;;;;1244:440:10;;;;;;;;;;-1:-1:-1;1244:440:10;;;;;:::i;:::-;;:::i;11183:225:9:-;;;;;;;;;;-1:-1:-1;11183:225:9;;;;;:::i;:::-;;:::i;9744:238::-;;;;;;;;;;-1:-1:-1;9744:238:9;;;;;:::i;:::-;;:::i;3978:149:2:-;;;;;;;;;;-1:-1:-1;3978:149:2;;;;;:::i;:::-;-1:-1:-1;;;;;4093:18:2;;;4067:7;4093:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3978:149;9514:179:9;;;;;;;;;;-1:-1:-1;9514:179:9;;;;;:::i;:::-;;:::i;10278:147::-;;;;;;;;;;-1:-1:-1;10278:147:9;;;;;:::i;:::-;;:::i;1992:276:8:-;;;;;;;;;;-1:-1:-1;1992:276:8;;;;;:::i;:::-;;:::i;12354:172:9:-;;;;;;;;;;;;;:::i;1960:118:10:-;;;;;;;;;;;;;:::i;2168:98:2:-;2222:13;2254:5;2247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2168:98;:::o;4265:166::-;4348:4;4364:39;169:10:1;4387:7:2;4396:6;4364:8;:39::i;:::-;-1:-1:-1;4420:4:2;4265:166;;;;;:::o;10431:299:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;;;;;;;;;10540:4:9::1;10527:9;:17;;:42;;;;;10565:4;10548:13;:21;;10527:42;10519:88;;;::::0;-1:-1:-1;;;10519:88:9;;8210:2:12;10519:88:9::1;::::0;::::1;8192:21:12::0;8249:2;8229:18;;;8222:30;8288:34;8268:18;;;8261:62;-1:-1:-1;;;8339:18:12;;;8332:31;8380:19;;10519:88:9::1;8182:223:12::0;10519:88:9::1;10617:6;:18:::0;;;10645:10:::1;:26:::0;;;10686:37:::1;::::0;;12888:25:12;;;12944:2;12929:18;;12922:34;;;10686:37:9::1;::::0;12861:18:12;10686:37:9::1;;;;;;;;10431:299:::0;;:::o;952:282:10:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1032:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1031:26;1023:79;;;::::0;-1:-1:-1;;;1023:79:10;;9370:2:12;1023:79:10::1;::::0;::::1;9352:21:12::0;9409:2;9389:18;;;9382:30;9448:34;9428:18;;;9421:62;-1:-1:-1;;;9499:18:12;;;9492:38;9547:19;;1023:79:10::1;9342:230:12::0;1023:79:10::1;1112:19;:32:::0;;::::1;::::0;;::::1;::::0;;;;::::1;::::0;;-1:-1:-1;;;;;;1112:32:10::1;-1:-1:-1::0;;;;;1112:32:10;::::1;::::0;;::::1;::::0;;;-1:-1:-1;1154:25:10;;;:17:::1;1112:32;1154:25:::0;;;;;;;;:32;;-1:-1:-1;;1154:32:10::1;::::0;;::::1;::::0;;;1201:26;3386:51:12;;;1201:26:10::1;::::0;3359:18:12;1201:26:10::1;;;;;;;;952:282:::0;:::o;10988:185:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11089:17:9::1;:32:::0;;-1:-1:-1;;;;;;11089:32:9::1;-1:-1:-1::0;;;;;11089:32:9;::::1;::::0;;::::1;::::0;;;11136:30:::1;::::0;3386:51:12;;;11136:30:9::1;::::0;3374:2:12;3359:18;11136:30:9::1;3341:102:12::0;4898:347:2;5034:4;5050:36;5060:6;5068:9;5079:6;5050:9;:36::i;:::-;5096:121;5105:6;169:10:1;5127:89:2;5165:6;5127:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5127:19:2;;;;;;:11;:19;;;;;;;;169:10:1;5127:33:2;;;;;;;;;;:37;:89::i;:::-;5096:8;:121::i;:::-;-1:-1:-1;5234:4:2;4898:347;;;;;:::o;11786:184:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11871:29:9::1;:39:::0;;;::::1;;-1:-1:-1::0;;;11871:39:9::1;-1:-1:-1::0;;;;11871:39:9;;::::1;;::::0;;11925:38:::1;::::0;::::1;::::0;::::1;::::0;11903:7;4404:14:12;4397:22;4379:41;;4367:2;4352:18;;4334:92;5640:215:2;169:10:1;5728:4:2;5776:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;5776:34:2;;;;;;;;;;5728:4;;5744:83;;5767:7;;5776:50;;5815:10;5776:38;:50::i;11414:366:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11488:34:9::1;11542:9;11488:64;;11596:17;-1:-1:-1::0;;;;;11596:25:9::1;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;11578:70:9::1;;11657:4;11664:17;-1:-1:-1::0;;;;;11664:22:9::1;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11578:111;::::0;-1:-1:-1;;;;;;11578:111:9::1;::::0;;;;;;-1:-1:-1;;;;;3894:15:12;;;11578:111:9::1;::::0;::::1;3876:34:12::0;3946:15;;3926:18;;;3919:43;3811:18;;11578:111:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11562:13;:127:::0;;-1:-1:-1;;;;;;11562:127:9;;::::1;-1:-1:-1::0;;;;;11562:127:9;;::::1;;::::0;;;11699:15:::1;:35:::0;;;;::::1;::::0;;::::1;;::::0;;11749:24:::1;::::0;3404:32:12;;;3386:51;;11749:24:9::1;::::0;3374:2:12;3359:18;11749:24:9::1;3341:102:12::0;10122:150:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;10192:27:9;::::1;;::::0;;;:18:::1;:27;::::0;;;;;;;;:34;;-1:-1:-1;;10192:34:9::1;10222:4;10192:34;::::0;;10241:24;;3386:51:12;;;10241:24:9::1;::::0;3359:18:12;10241:24:9::1;3341:102:12::0;11976:178:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;12078:17:9::1;:9:::0;12090:5:::1;12078:17;:::i;:::-;12056:19;:39:::0;12110:37:::1;::::0;12091:25:12;;;12110:37:9::1;::::0;12079:2:12;12064:18;12110:37:9::1;12046:76:12::0;12197:151:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;12292:4:9::1;12248:23;3520:18:2::0;;;;;;;;;;;12308:33:9::1;3520:18:2::0;12308:16:9::1;:33::i;:::-;1346:1:8;12197:151:9:o:0;1696:147:8:-;1277:6;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;1788:6:::1;::::0;1767:40:::1;::::0;1804:1:::1;::::0;-1:-1:-1;;;;;1788:6:8::1;::::0;1767:40:::1;::::0;1804:1;;1767:40:::1;1817:6;:19:::0;;-1:-1:-1;;;;;;1817:19:8::1;::::0;;1696:147::o;10736:246:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;10845:4:9::1;10825:16;:24;;10817:67;;;::::0;-1:-1:-1;;;10817:67:9;;6687:2:12;10817:67:9::1;::::0;::::1;6669:21:12::0;6726:2;6706:18;;;6699:30;6765:32;6745:18;;;6738:60;6815:18;;10817:67:9::1;6659:180:12::0;10817:67:9::1;10894:13;:32:::0;;;10941:34:::1;::::0;12091:25:12;;;10941:34:9::1;::::0;12079:2:12;12064:18;10941:34:9::1;12046:76:12::0;2379:102:2;2435:13;2467:7;2460:14;;;;;:::i;9217:291:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;9283:17:9::1;::::0;-1:-1:-1;;;9283:17:9;::::1;;;9282:18;9274:58;;;::::0;-1:-1:-1;;;9274:58:9;;10140:2:12;9274:58:9::1;::::0;::::1;10122:21:12::0;10179:2;10159:18;;;10152:30;10218:29;10198:18;;;10191:57;10265:18;;9274:58:9::1;10112:177:12::0;9274:58:9::1;9371:17;:24:::0;;-1:-1:-1;;;;9371:24:9::1;-1:-1:-1::0;;;9371:24:9::1;::::0;;9477::::1;:15;9495:6;9477:24;:::i;:::-;9453:21;:48:::0;9217:291::o;6342:266:2:-;6435:4;6451:129;169:10:1;6474:7:2;6483:96;6522:15;6483:96;;;;;;;;;;;;;;;;;169:10:1;6483:25:2;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6483:34:2;;;;;;;;;;;;:38;:96::i;3748:172::-;3834:4;3850:42;169:10:1;3874:9:2;3885:6;3850:9;:42::i;1829:121:10:-;1889:16;1924:19;1917:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1917:26:10;;;;;;;;;;;;;;;;;;;;;;1829:121;:::o;1244:440::-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;1323:25:10;::::1;;::::0;;;:17:::1;:25;::::0;;;;;::::1;;1315:74;;;::::0;-1:-1:-1;;;1315:74:10;;7805:2:12;1315:74:10::1;::::0;::::1;7787:21:12::0;7844:2;7824:18;;;7817:30;7883:34;7863:18;;;7856:62;-1:-1:-1;;;7934:18:12;;;7927:34;7978:19;;1315:74:10::1;7777:226:12::0;1315:74:10::1;1404:6;1399:240;1420:19;:26:::0;1416:30;::::1;1399:240;;;1497:6;-1:-1:-1::0;;;;;1471:32:10::1;:19;1491:1;1471:22;;;;;;-1:-1:-1::0;;;1471:22:10::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;1471:22:10::1;:32;1467:162;;;-1:-1:-1::0;;;;;1523:25:10;::::1;1551:5;1523:25:::0;;;:17:::1;:25;::::0;;;;:33;;-1:-1:-1;;1523:33:10::1;::::0;;1574:17:::1;1589:1:::0;1574:14:::1;:17::i;:::-;1609:5;;1467:162;1448:3:::0;::::1;::::0;::::1;:::i;:::-;;;;1399:240;;;-1:-1:-1::0;1653:24:10::1;::::0;-1:-1:-1;;;;;3404:32:12;;3386:51;;1653:24:10::1;::::0;3374:2:12;3359:18;1653:24:10::1;3341:102:12::0;11183:225:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;11294:15:9::1;:52:::0;;-1:-1:-1;;;;;;11294:52:9::1;-1:-1:-1::0;;;;;11294:52:9;::::1;::::0;;::::1;::::0;;;11361:40:::1;::::0;3386:51:12;;;11361:40:9::1;::::0;3374:2:12;3359:18;11361:40:9::1;3341:102:12::0;9744:238:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;9836:1:9::1;9824:8;:13;;9816:53;;;::::0;-1:-1:-1;;;9816:53:9;;8612:2:12;9816:53:9::1;::::0;::::1;8594:21:12::0;8651:2;8631:18;;;8624:30;8690:29;8670:18;;;8663:57;8737:18;;9816:53:9::1;8584:177:12::0;9816:53:9::1;9893:36;9924:4;9893:26;483:23;9910:8:::0;9893:16:::1;:26::i;:::-;:30:::0;::::1;:36::i;:::-;9879:11;:50:::0;;;9944:31:::1;::::0;12091:25:12;;;9944:31:9::1;::::0;12079:2:12;12064:18;9944:31:9::1;12046:76:12::0;9514:179:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;9596:18:9::1;:36:::0;;;::::1;;-1:-1:-1::0;;;9596:36:9::1;-1:-1:-1::0;;;;9596:36:9;;::::1;;::::0;;9647:39:::1;::::0;::::1;::::0;::::1;::::0;9617:15;4404:14:12;4397:22;4379:41;;4367:2;4352:18;;4334:92;10278:147:9;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;10346:27:9;::::1;10376:5;10346:27:::0;;;:18:::1;:27;::::0;;;;;;;;:35;;-1:-1:-1;;10346:35:9::1;::::0;;10396:22;;3386:51:12;;;10396:22:9::1;::::0;3359:18:12;10396:22:9::1;3341:102:12::0;1992:276:8;1277:6;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;-1:-1:-1;;;;;2095:22:8;::::1;2074:107;;;::::0;-1:-1:-1;;;2074:107:8;;5877:2:12;2074:107:8::1;::::0;::::1;5859:21:12::0;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:12;;;5999:36;6052:19;;2074:107:8::1;5849:228:12::0;2074:107:8::1;2217:6;::::0;2196:38:::1;::::0;-1:-1:-1;;;;;2196:38:8;;::::1;::::0;2217:6:::1;::::0;2196:38:::1;::::0;2217:6:::1;::::0;2196:38:::1;2244:6;:17:::0;;-1:-1:-1;;;;;;2244:17:8::1;-1:-1:-1::0;;;;;2244:17:8;;;::::1;::::0;;;::::1;::::0;;1992:276::o;12354:172:9:-;1277:6:8;;-1:-1:-1;;;;;1277:6:8;169:10:1;1277:22:8;1269:67;;;;-1:-1:-1;;;1269:67:8;;;;;;;:::i;:::-;12481:17:9::1;::::0;12434:21:::1;::::0;12465:54:::1;::::0;-1:-1:-1;;;;;12481:17:9::1;12434:21:::0;12465:15:::1;:54::i;1960:118:10:-:0;2009:7;2050:21;:19;:21::i;:::-;2035:12;;:36;;;;:::i;:::-;2028:43;;1960:118;:::o;2211:459:11:-;2269:7;2510:6;2506:45;;-1:-1:-1;2539:1:11;2532:8;;2506:45;2561:9;2573:5;2577:1;2573;:5;:::i;:::-;2561:17;-1:-1:-1;2605:1:11;2596:5;2600:1;2561:17;2596:5;:::i;:::-;:10;2588:56;;;;-1:-1:-1;;;2588:56:11;;8968:2:12;2588:56:11;;;8950:21:12;9007:2;8987:18;;;8980:30;9046:34;9026:18;;;9019:62;-1:-1:-1;;;9097:18:12;;;9090:31;9138:19;;2588:56:11;8940:223:12;2588:56:11;2662:1;2211:459;-1:-1:-1;;;2211:459:11:o;3132:130::-;3190:7;3216:39;3220:1;3223;3216:39;;;;;;;;;;;;;;;;;:3;:39::i;875:176::-;933:7;;964:5;968:1;964;:5;:::i;:::-;952:17;;992:1;987;:6;;979:46;;;;-1:-1:-1;;;979:46:11;;7046:2:12;979:46:11;;;7028:21:12;7085:2;7065:18;;;7058:30;7124:29;7104:18;;;7097:57;7171:18;;979:46:11;7018:177:12;9441:370:2;-1:-1:-1;;;;;9572:19:2;;9564:68;;;;-1:-1:-1;;;9564:68:2;;10902:2:12;9564:68:2;;;10884:21:12;10941:2;10921:18;;;10914:30;10980:34;10960:18;;;10953:62;-1:-1:-1;;;11031:18:12;;;11024:34;11075:19;;9564:68:2;10874:226:12;9564:68:2;-1:-1:-1;;;;;9650:21:2;;9642:68;;;;-1:-1:-1;;;9642:68:2;;6284:2:12;9642:68:2;;;6266:21:12;6323:2;6303:18;;;6296:30;6362:34;6342:18;;;6335:62;-1:-1:-1;;;6413:18:12;;;6406:32;6455:19;;9642:68:2;6256:224:12;9642:68:2;-1:-1:-1;;;;;9721:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9772:32;;12091:25:12;;;9772:32:2;;12064:18:12;9772:32:2;;;;;;;;9441:370;;;:::o;3824:1873:9:-;3989:17;;-1:-1:-1;;;3989:17:9;;;;;:44;;-1:-1:-1;1137:6:8;;-1:-1:-1;;;;;1137:6:8;169:10:1;4010:23:9;3989:44;3981:120;;;;-1:-1:-1;;;3981:120:9;;11307:2:12;3981:120:9;;;11289:21:12;11346:2;11326:18;;;11319:30;11385:34;11365:18;;;11358:62;11456:33;11436:18;;;11429:61;11507:19;;3981:120:9;11279:253:12;3981:120:9;4151:18;;-1:-1:-1;;;4151:18:9;;;;4147:102;;;4185:33;4201:4;4207:2;4211:6;4185:15;:33::i;:::-;3824:1873;;;:::o;4147:102::-;-1:-1:-1;;;;;4277:26:9;;;;;;:20;:26;;;;;;;;4276:27;:68;;;;-1:-1:-1;;;;;;4320:24:9;;;;;;:20;:24;;;;;;;;4319:25;4276:68;4259:260;;;4424:11;;4414:6;:21;;4389:119;;;;-1:-1:-1;;;4389:119:9;;11739:2:12;4389:119:9;;;11721:21:12;11778:2;11758:18;;;11751:30;11817:34;11797:18;;;11790:62;-1:-1:-1;;;11868:18:12;;;11861:37;11915:19;;4389:119:9;11711:229:12;4389:119:9;4574:6;;4594:21;;4619:15;-1:-1:-1;4594:40:9;;;:63;;-1:-1:-1;4644:13:9;;-1:-1:-1;;;;;4638:19:9;;;4644:13;;4638:19;4594:63;4590:128;;;4693:13;;4682:6;;:25;;:10;:25::i;:::-;4673:6;:34;4590:128;4806:4;4757:28;3520:18:2;;;;;;;;;;;4873:19:9;;4849:43;;;;;;;4919:53;;-1:-1:-1;4955:17:9;;-1:-1:-1;;;4955:17:9;;;;4954:18;4919:53;:90;;;;-1:-1:-1;4996:13:9;;-1:-1:-1;;;;;4988:21:9;;;4996:13;;4988:21;;4919:90;:135;;;;-1:-1:-1;5025:29:9;;-1:-1:-1;;;5025:29:9;;;;4919:135;4902:259;;;5106:44;5129:20;5106:22;:44::i;:::-;-1:-1:-1;;;;;5175:24:9;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5203:22:9;;;;;;:18;:22;;;;;;;;5175:50;5171:95;;;5241:14;:12;:14::i;:::-;5277:23;5302:12;5318:18;5329:6;5318:10;:18::i;:::-;-1:-1:-1;;;;;5364:15:9;;:9;:15;;;;;;;;;;;5276:60;;-1:-1:-1;5276:60:9;-1:-1:-1;5364:27:9;;5384:6;5364:19;:27::i;:::-;-1:-1:-1;;;;;5346:15:9;;;:9;:15;;;;;;;;;;;:45;;;;5417:13;;;;;;;:34;;5435:15;5417:17;:34::i;:::-;-1:-1:-1;;;;;5401:13:9;;:9;:13;;;;;;;;;;:50;5462:14;5471:4;5462:8;:14::i;:::-;-1:-1:-1;;;;;5491:24:9;;;;;;:18;:24;;;;;;;;;:50;;-1:-1:-1;;;;;;5519:22:9;;;;;;:18;:22;;;;;;;;5491:50;5487:96;;;5557:15;6765:20;;6751:11;:34;6804:15;;6795:6;:24;6842:19;;6829:10;:32;6708:160;5557:15;5629:10;5620:6;:19;;;;5670:2;-1:-1:-1;;;;;5655:35:9;5664:4;-1:-1:-1;;;;;5655:35:9;;5674:15;5655:35;;;;12091:25:12;;12079:2;12064:18;;12046:76;5655:35:9;;;;;;;;3824:1873;;;;;;;;:::o;1747:217:11:-;1863:7;1898:12;1890:6;;;;1882:29;;;;-1:-1:-1;;;1882:29:11;;;;;;;;:::i;:::-;-1:-1:-1;1921:9:11;1933:5;1937:1;1933;:5;:::i;:::-;1921:17;1747:217;-1:-1:-1;;;;;1747:217:11:o;8638:573:9:-;8786:16;;;8800:1;8786:16;;;;;;;;8762:21;;8786:16;;;;;;;;;;-1:-1:-1;8786:16:9;8762:40;;8830:4;8812;8817:1;8812:7;;;;;;-1:-1:-1;;;8812:7:9;;;;;;;;;-1:-1:-1;;;;;8812:23:9;;;:7;;;;;;;;;;:23;;;;8855:15;;:22;;;-1:-1:-1;;;8855:22:9;;;;:15;;;;;:20;;:22;;;;;8812:7;;8855:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;8845:4;8850:1;8845:7;;;;;;-1:-1:-1;;;8845:7:9;;;;;;;;;-1:-1:-1;;;;;8845:32:9;;;:7;;;;;;;;;:32;8920:15;;8888:62;;8905:4;;8920:15;8938:11;8888:8;:62::i;:::-;8986:15;;:218;;-1:-1:-1;;;8986:218:9;;-1:-1:-1;;;;;8986:15:9;;;;:66;;:218;;9066:11;;8986:15;;9134:4;;9160;;9179:15;;8986:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8638:573;;:::o;367:268:10:-;438:19;:26;430:34;;422:81;;;;-1:-1:-1;;;422:81:10;;7402:2:12;422:81:10;;;7384:21:12;7441:2;7421:18;;;7414:30;7480:34;7460:18;;;7453:62;-1:-1:-1;;;7531:18:12;;;7524:32;7573:19;;422:81:10;7374:224:12;422:81:10;542:19;562:26;;:30;;591:1;;562:30;:::i;:::-;542:51;;;;;;-1:-1:-1;;;542:51:10;;;;;;;;;;;;;;;;;;;513:19;:26;;-1:-1:-1;;;;;542:51:10;;;;533:5;;513:26;;;;-1:-1:-1;;;513:26:10;;;;;;;;;;;;;;;;;:80;;;;;-1:-1:-1;;;;;513:80:10;;;;;-1:-1:-1;;;;;513:80:10;;;;;;603:19;:25;;;;;-1:-1:-1;;;603:25:10;;;;;;;;;;;;;;;;;;-1:-1:-1;;603:25:10;;;;;-1:-1:-1;;;;;;603:25:10;;;;;;-1:-1:-1;367:268:10:o;8478:154:9:-;8557:10;;8553:73;;8583:32;;-1:-1:-1;;;;;8583:24:9;;;:32;;;;;8608:6;;8583:32;;;;8608:6;8583:24;:32;;;;;;;;;;;;;;;;;;;8553:73;8478:154;;:::o;645:297:10:-;699:7;;;761:137;782:19;:26;778:30;;761:137;;;854:33;864:19;884:1;864:22;;;;;;-1:-1:-1;;;864:22:10;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;864:22:10;3520:18:2;;;;;;;;;;3420:125;854:33:10;829:58;;;;:::i;:::-;;-1:-1:-1;810:3:10;;;;:::i;:::-;;;;761:137;;;-1:-1:-1;914:21:10;645:297;-1:-1:-1;645:297:10:o;3744:302:11:-;3860:7;3894:12;3887:5;3879:28;;;;-1:-1:-1;;;3879:28:11;;;;;;;;:::i;:::-;-1:-1:-1;3917:9:11;3929:5;3933:1;3929;:5;:::i;7082:560:2:-;-1:-1:-1;;;;;7217:20:2;;7209:70;;;;-1:-1:-1;;;7209:70:2;;10496:2:12;7209:70:2;;;10478:21:12;10535:2;10515:18;;;10508:30;10574:34;10554:18;;;10547:62;-1:-1:-1;;;10625:18:12;;;10618:35;10670:19;;7209:70:2;10468:227:12;7209:70:2;-1:-1:-1;;;;;7297:23:2;;7289:71;;;;-1:-1:-1;;;7289:71:2;;5473:2:12;7289:71:2;;;5455:21:12;5512:2;5492:18;;;5485:30;5551:34;5531:18;;;5524:62;-1:-1:-1;;;5602:18:12;;;5595:33;5645:19;;7289:71:2;5445:225:12;7289:71:2;7449;7471:6;7449:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7449:17:2;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7429:17:2;;;:9;:17;;;;;;;;;;;:91;;;;7553:20;;;;;;;:32;;7578:6;7553:24;:32::i;:::-;-1:-1:-1;;;;;7530:20:2;;;:9;:20;;;;;;;;;;;;:55;;;;7600:35;12091:25:12;;;7530:20:2;;7600:35;;;;;;12064:18:12;7600:35:2;12046:76:12;6874:1598:9;2638:17;:24;;-1:-1:-1;;;;2638:24:9;-1:-1:-1;;;2638:24:9;;;7040:11:::1;::::0;7024:10:::1;::::0;7013:6:::1;::::0;2638:24;;7013:39:::1;::::0;7040:11;;7013:22:::1;::::0;:10:::1;:22::i;:::-;:26:::0;::::1;:39::i;:::-;6986:66:::0;-1:-1:-1;7066:21:9;7062:34:::1;;7089:7;;;7062:34;7395:21;7458:38;7475:20:::0;7458:16:::1;:38::i;:::-;7507:18;7528:41;:21;7554:14:::0;7528:25:::1;:41::i;:::-;7507:62:::0;-1:-1:-1;7584:14:9;;7580:886:::1;;7653:23;7679:49;7711:16;7679:27;7694:11;;7679:10;:14;;:27;;;;:::i;:49::-;7758:22;::::0;7653:75;;-1:-1:-1;7742:56:9::1;::::0;-1:-1:-1;;;;;7758:22:9::1;7653:75:::0;7742:15:::1;:56::i;:::-;7881:22;7906:48;7937:16;7906:26;7921:10;;7906;:14;;:26;;;;:::i;:48::-;7881:73;;7989:1;7972:14;:18;:60;;;;-1:-1:-1::0;8002:15:9::1;::::0;-1:-1:-1;;;;;8002:15:9::1;7994:38:::0;::::1;7972:60;7968:194;;;8056:15;::::0;:80:::1;::::0;-1:-1:-1;;;8056:80:9;;436:1:::1;8056:80:::0;;::::1;12091:25:12::0;-1:-1:-1;;;;;8056:15:9;;::::1;::::0;:29:::1;::::0;8093:14;;12064:18:12;;8056:80:9::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;8052:96:::0;::::1;8252:18;8273:44;8300:16;8273:22;8288:6;;8273:10;:14;;:22;;;;:::i;:44::-;8347:17;::::0;8252:65;;-1:-1:-1;8331:46:9::1;::::0;-1:-1:-1;;;;;8347:17:9::1;8252:65:::0;8331:15:::1;:46::i;:::-;8397:58;::::0;;12888:25:12;;;12944:2;12929:18;;12922:34;;;8397:58:9::1;::::0;12861:18:12;8397:58:9::1;;;;;;;7580:886;;;;2672:1;;;;-1:-1:-1::0;2683:17:9;:25;;-1:-1:-1;;;;2683:25:9;;;6874:1598::o;6400:302::-;6446:6;;:11;:30;;;;-1:-1:-1;6461:10:9;;:15;6446:30;:50;;;;-1:-1:-1;6480:11:9;;:16;6446:50;6442:63;;;6400:302::o;6442:63::-;6538:11;;;6515:20;:34;6577:6;;;6559:15;:24;6615:10;;;6593:19;:32;-1:-1:-1;6636:15:9;;;;6661:10;;;;6681:14;6400:302::o;5793:251::-;5876:7;5885;5908:12;5923:21;5936:7;5923:12;:21::i;:::-;5908:36;-1:-1:-1;5954:23:9;5980:17;:7;5908:36;5980:11;:17::i;:::-;5954:43;6032:4;;-1:-1:-1;5793:251:9;;-1:-1:-1;;;5793:251:9:o;1322:134:11:-;1380:7;1406:43;1410:1;1413;1406:43;;;;;;;;;;;;;;;;;:3;:43::i;6050:116:9:-;6144:4;6126:9;:24;;;;;;;;;;;:33;;6155:3;6126:28;:33::i;:::-;6117:4;6099:9;:24;;;;;;;;;;:60;-1:-1:-1;6050:116:9:o;6172:222::-;6257:7;6280:16;6299:39;6326:11;;6299:22;6310:10;;6299:6;;:10;;:22;;;;:::i;:39::-;6280:58;-1:-1:-1;6355:32:9;6381:5;6355:21;:7;6280:58;6355:11;:21::i;14:257:12:-;73:6;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:31;235:5;210:31;:::i;276:261::-;346:6;399:2;387:9;378:7;374:23;370:32;367:2;;;420:6;412;405:22;367:2;457:9;451:16;476:31;501:5;476:31;:::i;812:398::-;880:6;888;941:2;929:9;920:7;916:23;912:32;909:2;;;962:6;954;947:22;909:2;1006:9;993:23;1025:31;1050:5;1025:31;:::i;:::-;1075:5;-1:-1:-1;1132:2:12;1117:18;;1104:32;1145:33;1104:32;1145:33;:::i;:::-;1197:7;1187:17;;;899:311;;;;;:::o;1215:466::-;1292:6;1300;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:2;;;1382:6;1374;1367:22;1329:2;1426:9;1413:23;1445:31;1470:5;1445:31;:::i;:::-;1495:5;-1:-1:-1;1552:2:12;1537:18;;1524:32;1565:33;1524:32;1565:33;:::i;:::-;1319:362;;1617:7;;-1:-1:-1;;;1671:2:12;1656:18;;;;1643:32;;1319:362::o;1686:325::-;1754:6;1762;1815:2;1803:9;1794:7;1790:23;1786:32;1783:2;;;1836:6;1828;1821:22;1783:2;1880:9;1867:23;1899:31;1924:5;1899:31;:::i;:::-;1949:5;2001:2;1986:18;;;;1973:32;;-1:-1:-1;;;1773:238:12:o;2016:293::-;2072:6;2125:2;2113:9;2104:7;2100:23;2096:32;2093:2;;;2146:6;2138;2131:22;2093:2;2190:9;2177:23;2243:5;2236:13;2229:21;2222:5;2219:32;2209:2;;2270:6;2262;2255:22;2314:190;2373:6;2426:2;2414:9;2405:7;2401:23;2397:32;2394:2;;;2447:6;2439;2432:22;2394:2;-1:-1:-1;2475:23:12;;2384:120;-1:-1:-1;2384:120:12:o;2509:258::-;2577:6;2585;2638:2;2626:9;2617:7;2613:23;2609:32;2606:2;;;2659:6;2651;2644:22;2606:2;-1:-1:-1;;2687:23:12;;;2757:2;2742:18;;;2729:32;;-1:-1:-1;2596:171:12:o;2772:463::-;2825:3;2863:5;2857:12;2890:6;2885:3;2878:19;2916:4;2945:2;2940:3;2936:12;2929:19;;2982:2;2975:5;2971:14;3003:3;3015:195;3029:6;3026:1;3023:13;3015:195;;;3094:13;;-1:-1:-1;;;;;3090:39:12;3078:52;;3150:12;;;;3185:15;;;;3126:1;3044:9;3015:195;;;-1:-1:-1;3226:3:12;;2833:402;-1:-1:-1;;;;;2833:402:12:o;3973:261::-;4152:2;4141:9;4134:21;4115:4;4172:56;4224:2;4213:9;4209:18;4201:6;4172:56;:::i;4663:603::-;4775:4;4804:2;4833;4822:9;4815:21;4865:6;4859:13;4908:6;4903:2;4892:9;4888:18;4881:34;4933:4;4946:140;4960:6;4957:1;4954:13;4946:140;;;5055:14;;;5051:23;;5045:30;5021:17;;;5040:2;5017:26;5010:66;4975:10;;4946:140;;;5104:6;5101:1;5098:13;5095:2;;;5174:4;5169:2;5160:6;5149:9;5145:22;5141:31;5134:45;5095:2;-1:-1:-1;5250:2:12;5229:15;-1:-1:-1;;5225:29:12;5210:45;;;;5257:2;5206:54;;4784:482;-1:-1:-1;;;4784:482:12:o;9577:356::-;9779:2;9761:21;;;9798:18;;;9791:30;9857:34;9852:2;9837:18;;9830:62;9924:2;9909:18;;9751:182::o;12127:582::-;12426:6;12415:9;12408:25;12469:6;12464:2;12453:9;12449:18;12442:34;12512:3;12507:2;12496:9;12492:18;12485:31;12389:4;12533:57;12585:3;12574:9;12570:19;12562:6;12533:57;:::i;:::-;-1:-1:-1;;;;;12626:32:12;;;;12621:2;12606:18;;12599:60;-1:-1:-1;12690:3:12;12675:19;12668:35;12525:65;12398:311;-1:-1:-1;;;12398:311:12:o;13156:128::-;13196:3;13227:1;13223:6;13220:1;13217:13;13214:2;;;13233:18;;:::i;:::-;-1:-1:-1;13269:9:12;;13204:80::o;13289:217::-;13329:1;13355;13345:2;;-1:-1:-1;;;13380:31:12;;13434:4;13431:1;13424:15;13462:4;13387:1;13452:15;13345:2;-1:-1:-1;13491:9:12;;13335:171::o;13511:168::-;13551:7;13617:1;13613;13609:6;13605:14;13602:1;13599:21;13594:1;13587:9;13580:17;13576:45;13573:2;;;13624:18;;:::i;:::-;-1:-1:-1;13664:9:12;;13563:116::o;13684:125::-;13724:4;13752:1;13749;13746:8;13743:2;;;13757:18;;:::i;:::-;-1:-1:-1;13794:9:12;;13733:76::o;13814:380::-;13893:1;13889:12;;;;13936;;;13957:2;;14011:4;14003:6;13999:17;13989:27;;13957:2;14064;14056:6;14053:14;14033:18;14030:38;14027:2;;;14110:10;14105:3;14101:20;14098:1;14091:31;14145:4;14142:1;14135:15;14173:4;14170:1;14163:15;14199:135;14238:3;-1:-1:-1;;14259:17:12;;14256:2;;;14279:18;;:::i;:::-;-1:-1:-1;14326:1:12;14315:13;;14246:88::o;14339:127::-;14400:10;14395:3;14391:20;14388:1;14381:31;14431:4;14428:1;14421:15;14455:4;14452:1;14445:15;14471:131;-1:-1:-1;;;;;14546:31:12;;14536:42;;14526:2;;14592:1;14589;14582:12
Swarm Source
ipfs://21e1923c940255a78eff26df45efb62c8aa8d4326739a33a1dc15d40d2414faf
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.