Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000 DOPE
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000001160979088 DOPEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DOODLEPEPE
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-29 */ /** * SPDX-License-Identifier: MIT https://t.me/DoodlePepeERC20 https://twitter.com/DoodlePepeERC20 https://doodlepepe.vip/ */ pragma solidity ^0.8.19; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod( uint256 a, uint256 b ) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Indicates a failed `decreaseAllowance` request. */ error ERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `requestedDecrease`. * * NOTE: Although this function is designed to avoid double spending with {approval}, * it can still be frontrunned, preventing any attempt of allowance reduction. */ function decreaseAllowance(address spender, uint256 requestedDecrease) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); if (currentAllowance < requestedDecrease) { revert ERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } unchecked { _approve(owner, spender, currentAllowance - requestedDecrease); } return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is * the zero address. All customizations to transfers, mints, and burns should be done by overriding this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, by transferring it to address(0). * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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 value) internal virtual { _approve(owner, spender, value, true); } /** * @dev Alternative version of {_approve} with an optional flag that can enable or disable the Approval event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to true * using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IUniV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniV2Router { 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; } contract DOODLEPEPE is ERC20, Ownable { using SafeMath for uint256; IUniV2Router public immutable uniV2Router; address public immutable uniV2Pair; // Swapback bool private _duringSwapBack; bool public _swapForFeesEnabled = false; uint256 public _minSwapbackTreshold; uint256 public _maxSwapbackLimit; //Anti-whale bool public _launchTradingLimitsInPlace = true; bool public _sameBlockTxLimitOn = true; uint256 public _maxWalletPerAddress; uint256 public _maxTokensPerTransfer; mapping(address => uint256) private lastTransferBlock; // to hold last Transfers temporarily during launch // Fee receivers address public _feeReceiverWallet1; address public _feeReceiverWallet2; bool public _isTradingEnabled = false; uint256 public _totalFeeForBuys; uint256 public _fee1ForBuy; uint256 public _fee2ForBuy; uint256 public _totalFeeForSells; uint256 public _fee1ForSell; uint256 public _fee2ForSell; uint256 public _tokensForReceiver1; uint256 public _tokensForReceiver2; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private feeWhitelisted; mapping(address => bool) public _txLimitWhitelisted; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public _isDexPair; event AddressExcludedFromFees(address indexed account, bool isExcluded); event SetDexPair(address indexed pair, bool indexed value); event _feeReceiverWallet1Updated( address indexed newWallet, address indexed oldWallet ); event _feeReceiverWallet2Updated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("DOODLE PEPE", "DOPE") { IUniV2Router _uniV2Router = IUniV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); exemptFromTxLim(address(_uniV2Router), true); uniV2Router = _uniV2Router; uniV2Pair = IUniV2Factory(_uniV2Router.factory()) .createPair(address(this), _uniV2Router.WETH()); exemptFromTxLim(address(uniV2Pair), true); SetAsDexPair(address(uniV2Pair), true); uint256 tokenSupply = 1000000000 * 1e18; _maxTokensPerTransfer = (tokenSupply * 2) / 100; // 1% of total supply _maxWalletPerAddress = (tokenSupply * 2) / 100; // 1% of total supply _minSwapbackTreshold = (tokenSupply * 5) / 10000; // 0.05% swapback trigger _maxSwapbackLimit = (tokenSupply * 7) / 100; // 7% max swapback _fee1ForBuy = 25; _fee2ForBuy = 0; _totalFeeForBuys = _fee1ForBuy + _fee2ForBuy; _fee1ForSell = 45; _fee2ForSell = 0; _totalFeeForSells = _fee1ForSell + _fee2ForSell; _feeReceiverWallet1 = 0x3B7172c158996F1E632FB8Ca530Ae729a778894D; _feeReceiverWallet2 = address(msg.sender); // exclude from paying fees or having max transaction amount exemptFromSwapFees(owner(), true); exemptFromSwapFees(address(this), true); exemptFromSwapFees(address(0xdead), true); exemptFromSwapFees(_feeReceiverWallet1, true); exemptFromTxLim(owner(), true); exemptFromTxLim(address(this), true); exemptFromTxLim(address(0xdead), true); exemptFromTxLim(_feeReceiverWallet1, true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, tokenSupply); } receive() external payable {} /// @notice Launches the token and enables trading. Irriversable. function lonchTheCoin() external onlyOwner { _isTradingEnabled = true; _swapForFeesEnabled = true; } /// @notice Removes the max wallet and max transaction limits function limitsOff() external onlyOwner returns (bool) { _launchTradingLimitsInPlace = false; return true; } /// @notice Disables the Same wallet block transfer delay function removeSameBlockRes() external onlyOwner returns (bool) { _sameBlockTxLimitOn = false; return true; } function changeMinSwapbackTresh( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= totalSupply() / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (500 * totalSupply()) / 100000, "Swap amount cannot be higher than 0.5% total supply." ); require( newAmount <= _maxSwapbackLimit, "Swap amount cannot be higher than _maxSwapbackLimit" ); _minSwapbackTreshold = newAmount; return true; } function changeMaxSwapbackLim( uint256 newAmount ) external onlyOwner returns (bool) { require( newAmount >= _minSwapbackTreshold, "Swap amount cannot be lower than _minSwapbackTreshold" ); _maxSwapbackLimit = newAmount; return true; } /// @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction /// @param newNum Base 1000, so 1% = 10 function changeMaxTokensPerTrans(uint256 newNum) external onlyOwner { require(newNum >= 2, "Cannot set _maxTokensPerTransfer lower than 0.2%"); _maxTokensPerTransfer = (newNum * totalSupply()) / 1000; } /// @notice Changes the maximum amount of tokens a wallet can hold /// @param newNum Base 1000, so 1% = 10 function changeMaxWalletPerAdd(uint256 newNum) external onlyOwner { require(newNum >= 5, "Cannot set _maxWalletPerAddress lower than 0.5%"); _maxWalletPerAddress = (newNum * totalSupply()) / 1000; } /// @notice Sets if a wallet is excluded from the max wallet and tx limits /// @param updAds The wallet to update /// @param isEx If the wallet is excluded or not function exemptFromTxLim( address updAds, bool isEx ) public onlyOwner { _txLimitWhitelisted[updAds] = isEx; } /// @notice Sets if the contract can sell tokens /// @param enabled set to false to disable selling function changeSwapForFeesEna(bool enabled) external onlyOwner { _swapForFeesEnabled = enabled; } /// @notice Sets the fees for buys /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function chngeFeesForBuys( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { _fee1ForBuy = _treasuryFee; _fee2ForBuy = _projectFee; _totalFeeForBuys = _fee1ForBuy + _fee2ForBuy; require(_totalFeeForBuys <= 12, "Must keep fees at 12% or less"); } /// @notice Sets the fees for sells /// @param _treasuryFee The fee for the treasury wallet /// @param _projectFee The fee for the dev wallet function chngeFeesForSells( uint256 _treasuryFee, uint256 _projectFee ) external onlyOwner { _fee1ForSell = _treasuryFee; _fee2ForSell = _projectFee; _totalFeeForSells = _fee1ForSell + _fee2ForSell; require(_totalFeeForSells <= 12, "Must keep fees at 12% or less"); } /// @notice Sets if a wallet is excluded from fees /// @param account The wallet to update /// @param excluded If the wallet is excluded or not function exemptFromSwapFees(address account, bool excluded) public onlyOwner { feeWhitelisted[account] = excluded; emit AddressExcludedFromFees(account, excluded); } /// @notice Sets an address as a new liquidity pair. You probably dont want to do this. /// @param pair The new pair function chngeAddressIsDexPair( address pair, bool value ) public onlyOwner { require( pair != uniV2Pair, "The pair cannot be removed from _isDexPair" ); SetAsDexPair(pair, value); } function SetAsDexPair(address pair, bool value) private { _isDexPair[pair] = value; emit SetDexPair(pair, value); } /// @notice Sets a wallet as the new fee receiver 1 wallet /// @param newFeeReceiver1 The new fee receiver 1 wallet function chngeFeeReceiver1( address newFeeReceiver1 ) external onlyOwner { emit _feeReceiverWallet1Updated(newFeeReceiver1, _feeReceiverWallet1); _feeReceiverWallet1 = newFeeReceiver1; } /// @notice Sets a wallet as the new fee receiver 2 wallet /// @param newFeeReceiver2 The new fee receiver 2 wallet function chngeFeeReceiver2(address newFeeReceiver2) external onlyOwner { emit _feeReceiverWallet2Updated(newFeeReceiver2, _feeReceiverWallet2); _feeReceiverWallet2 = newFeeReceiver2; } function isAddWhitelistedFromFees(address account) public view returns (bool) { return feeWhitelisted[account]; } function _update( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._update(from, to, 0); return; } if (_launchTradingLimitsInPlace) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !_duringSwapBack ) { if (!_isTradingEnabled) { require( feeWhitelisted[from] || feeWhitelisted[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (_sameBlockTxLimitOn) { if ( to != owner() && to != address(uniV2Router) && to != address(uniV2Pair) ) { require( lastTransferBlock[tx.origin] < block.number, "_update:: Transfer Delay enabled. Only one purchase per block allowed." ); lastTransferBlock[tx.origin] = block.number; } } //when buy if (_isDexPair[from] && !_txLimitWhitelisted[to]) { require( amount <= _maxTokensPerTransfer, "Buy transfer amount exceeds the _maxTokensPerTransfer." ); require( amount + balanceOf(to) <= _maxWalletPerAddress, "Max wallet exceeded" ); } //when sell else if ( _isDexPair[to] && !_txLimitWhitelisted[from] ) { require( amount <= _maxTokensPerTransfer, "Sell transfer amount exceeds the _maxTokensPerTransfer." ); } else if (!_txLimitWhitelisted[to]) { require( amount + balanceOf(to) <= _maxWalletPerAddress, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= _minSwapbackTreshold; if ( canSwap && _swapForFeesEnabled && !_duringSwapBack && !_isDexPair[from] && !feeWhitelisted[from] && !feeWhitelisted[to] ) { _duringSwapBack = true; swapTaxesForETH(); _duringSwapBack = false; } bool takeFee = !_duringSwapBack; // if any account belongs to _isExcludedFromFee account then remove the fee if (feeWhitelisted[from] || feeWhitelisted[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (_isDexPair[to] && _totalFeeForSells > 0) { fees = amount.mul(_totalFeeForSells).div(100); _tokensForReceiver2 += (fees * _fee2ForSell) / _totalFeeForSells; _tokensForReceiver1 += (fees * _fee1ForSell) / _totalFeeForSells; } // on buy else if (_isDexPair[from] && _totalFeeForBuys > 0) { fees = amount.mul(_totalFeeForBuys).div(100); _tokensForReceiver2 += (fees * _fee2ForBuy) / _totalFeeForBuys; _tokensForReceiver1 += (fees * _fee1ForBuy) / _totalFeeForBuys; } if (fees > 0) { super._update(from, address(this), fees); } amount -= fees; } super._update(from, to, amount); } function swapExactTokensForETHOnUniV2Router(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniV2Router.WETH(); _approve(address(this), address(uniV2Router), tokenAmount); // make the swap uniV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapTaxesForETH() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = _tokensForReceiver1 + _tokensForReceiver2; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > _maxSwapbackLimit) { contractBalance = _maxSwapbackLimit; } uint256 initialETHBalance = address(this).balance; swapExactTokensForETHOnUniV2Router(contractBalance); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForProject = ethBalance.mul(_tokensForReceiver2).div(totalTokensToSwap); _tokensForReceiver1 = 0; _tokensForReceiver2 = 0; (success, ) = address(_feeReceiverWallet2).call{value: ethForProject}(""); (success, ) = address(_feeReceiverWallet1).call{ value: address(this).balance }(""); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"currentAllowance","type":"uint256"},{"internalType":"uint256","name":"requestedDecrease","type":"uint256"}],"name":"ERC20FailedDecreaseAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"AddressExcludedFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetDexPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"_feeReceiverWallet1Updated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"_feeReceiverWallet2Updated","type":"event"},{"inputs":[],"name":"_fee1ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee1ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee2ForBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fee2ForSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeReceiverWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeReceiverWallet2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isDexPair","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isTradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_launchTradingLimitsInPlace","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSwapbackLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxTokensPerTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_minSwapbackTreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sameBlockTxLimitOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapForFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForReceiver1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokensForReceiver2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFeeForBuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalFeeForSells","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_txLimitWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMaxSwapbackLim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxTokensPerTrans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"changeMaxWalletPerAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"changeMinSwapbackTresh","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"changeSwapForFeesEna","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"chngeAddressIsDexPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver1","type":"address"}],"name":"chngeFeeReceiver1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newFeeReceiver2","type":"address"}],"name":"chngeFeeReceiver2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"chngeFeesForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_projectFee","type":"uint256"}],"name":"chngeFeesForSells","outputs":[],"stateMutability":"nonpayable","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":"requestedDecrease","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromSwapFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromTxLim","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":"isAddWhitelistedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lonchTheCoin","outputs":[],"stateMutability":"nonpayable","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":"removeSameBlockRes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"uniV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"contract IUniV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600d805460ff60a01b191690553480156200003a57600080fd5b506040518060400160405280600b81526020016a444f4f444c45205045504560a81b81525060405180604001604052806004815260200163444f504560e01b81525081600390816200008d9190620013a4565b5060046200009c8282620013a4565b505050620000b9620000b36200040d60201b60201c565b62000411565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000db81600162000463565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000126573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014c919062001470565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c0919062001470565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062001470565b6001600160a01b031660a08190526200024f90600162000463565b60a0516200025f906001620004dd565b6b033b2e3c9fd0803ce800000060646200027b826002620014b8565b620002879190620014d2565b600a55606462000299826002620014b8565b620002a59190620014d2565b600955612710620002b8826005620014b8565b620002c49190620014d2565b6006556064620002d6826007620014b8565b620002e29190620014d2565b6007556019600f81905560006010819055620002fe91620014f5565b600e55602d6012819055600060138190556200031a91620014f5565b601155600c80546001600160a01b0319908116733b7172c158996f1e632fb8ca530ae729a778894d17909155600d80549091163317905562000370620003686005546001600160a01b031690565b600162000531565b6200037d30600162000531565b6200038c61dead600162000531565b600c54620003a5906001600160a01b0316600162000531565b620003c4620003bc6005546001600160a01b031690565b600162000463565b620003d130600162000463565b620003e061dead600162000463565b600c54620003f9906001600160a01b0316600162000463565b620004053382620005db565b5050620015aa565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b25760405162461bcd60e51b8152602060048201819052602482015260008051602062003c8883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b6005546001600160a01b031633146200057c5760405162461bcd60e51b8152602060048201819052602482015260008051602062003c888339815191526044820152606401620004a9565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6001600160a01b038216620006075760405163ec442f0560e01b815260006004820152602401620004a9565b620006156000838362000619565b5050565b806000036200063557620006308383600062000df5565b505050565b60085460ff161562000af3576005546001600160a01b038481169116148015906200066e57506005546001600160a01b03838116911614155b80156200068357506001600160a01b03821615155b80156200069b57506001600160a01b03821661dead14155b8015620006b25750600554600160a01b900460ff16155b1562000af357600d54600160a01b900460ff1662000758576001600160a01b03831660009081526016602052604090205460ff16806200070a57506001600160a01b03821660009081526016602052604090205460ff165b620007585760405162461bcd60e51b815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401620004a9565b600854610100900460ff16156200086c576005546001600160a01b038381169116148015906200079c57506080516001600160a01b0316826001600160a01b031614155b8015620007bd575060a0516001600160a01b0316826001600160a01b031614155b156200086c57326000908152600b60205260409020544311620008595760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401620004a9565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff168015620008ae57506001600160a01b03821660009081526017602052604090205460ff16155b15620009a257600a548111156200092e5760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f5f6d6178546f6b656e735065725472616e736665722e000000000000000000006064820152608401620004a9565b6009546001600160a01b038316600090815260208190526040902054620009569083620014f5565b11156200099c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a9565b62000af3565b6001600160a01b03821660009081526018602052604090205460ff168015620009e457506001600160a01b03831660009081526017602052604090205460ff16155b1562000a6457600a548111156200099c5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401620004a9565b6001600160a01b03821660009081526017602052604090205460ff1662000af3576009546001600160a01b03831660009081526020819052604090205462000aad9083620014f5565b111562000af35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401620004a9565b306000908152602081905260409020546006548110801590819062000b215750600554600160a81b900460ff165b801562000b385750600554600160a01b900460ff16155b801562000b5e57506001600160a01b03851660009081526018602052604090205460ff16155b801562000b8457506001600160a01b03851660009081526016602052604090205460ff16155b801562000baa57506001600160a01b03841660009081526016602052604090205460ff16155b1562000bdb576005805460ff60a01b1916600160a01b17905562000bcd62000f28565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b90920482161591168062000c2a57506001600160a01b03851660009081526016602052604090205460ff165b1562000c34575060005b6000811562000ddf576001600160a01b03861660009081526018602052604090205460ff16801562000c6857506000601154115b1562000d035760115462000c8d9060649062000c8690889062001075565b906200108c565b90506011546013548262000ca29190620014b8565b62000cae9190620014d2565b6015600082825462000cc19190620014f5565b909155505060115460125462000cd89083620014b8565b62000ce49190620014d2565b6014600082825462000cf79190620014f5565b9091555062000dbc9050565b6001600160a01b03871660009081526018602052604090205460ff16801562000d2e57506000600e54115b1562000dbc57600e5462000d4c9060649062000c8690889062001075565b9050600e546010548262000d619190620014b8565b62000d6d9190620014d2565b6015600082825462000d809190620014f5565b9091555050600e54600f5462000d979083620014b8565b62000da39190620014d2565b6014600082825462000db69190620014f5565b90915550505b801562000dd05762000dd087308362000df5565b62000ddc81866200150b565b94505b62000dec87878762000df5565b50505050505050565b6001600160a01b03831662000e2457806002600082825462000e189190620014f5565b9091555062000e989050565b6001600160a01b0383166000908152602081905260409020548181101562000e795760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620004a9565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b03821662000eb65760028054829003905562000ed5565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000f1b91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145462000f4e9190620014f5565b9050600082158062000f5e575081155b1562000f6957505050565b60075483111562000f7a5760075492505b4762000f86846200109a565b600062000f94478362001215565b9050600062000fb48562000c86601554856200107560201b90919060201c565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146200100e576040519150601f19603f3d011682016040523d82523d6000602084013e62001013565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d806000811462001065576040519150601f19603f3d011682016040523d82523d6000602084013e6200106a565b606091505b505050505050505050565b6000620010838284620014b8565b90505b92915050565b6000620010838284620014d2565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110620010d257620010d262001521565b60200260200101906001600160a01b031690816001600160a01b0316815250506080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562001133573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001159919062001470565b816001815181106200116f576200116f62001521565b60200260200101906001600160a01b031690816001600160a01b031681525050620011a430608051846200122360201b60201c565b6080516001600160a01b031663791ac9478360008430426040518663ffffffff1660e01b8152600401620011dd95949392919062001537565b600060405180830381600087803b158015620011f857600080fd5b505af11580156200120d573d6000803e3d6000fd5b505050505050565b60006200108382846200150b565b6200063083838360016001600160a01b038416620012585760405163e602df0560e01b815260006004820152602401620004a9565b6001600160a01b0383166200128457604051634a1406b160e11b815260006004820152602401620004a9565b6001600160a01b03808516600090815260016020908152604080832093871683529290522082905580156200130257826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051620012f991815260200190565b60405180910390a35b50505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200133357607f821691505b6020821081036200135457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063057600081815260208120601f850160051c81016020861015620013835750805b601f850160051c820191505b818110156200120d578281556001016200138f565b81516001600160401b03811115620013c057620013c062001308565b620013d881620013d184546200131e565b846200135a565b602080601f831160018114620014105760008415620013f75750858301515b600019600386901b1c1916600185901b1785556200120d565b600085815260208120601f198616915b82811015620014415788860151825594840194600190910190840162001420565b5085821015620014605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200148357600080fd5b81516001600160a01b03811681146200149b57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620010865762001086620014a2565b600082620014f057634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620010865762001086620014a2565b81810381811115620010865762001086620014a2565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015620015895784516001600160a01b03168352938301939183019160010162001562565b50506001600160a01b03969096166060850152505050608001529392505050565b60805160a05161268e620015fa6000396000818161067901528181610c1501526118980152600081816106e10152818161185a0152818161219a01528181612253015261228f015261268e6000f3fe6080604052600436106103035760003560e01c80637361eda311610190578063bbd6d962116100dc578063cb3cd3f911610095578063dd62ed3e1161006f578063dd62ed3e14610904578063f043106a14610924578063f2fde38b14610944578063f99e0bf71461096457600080fd5b8063cb3cd3f914610895578063d3f2d9bd146108c5578063d910be0c146108e557600080fd5b8063bbd6d962146107ef578063c1cdddad14610805578063c2bf1b6914610825578063c3c884b414610845578063c3e5c04714610865578063c437c3961461087f57600080fd5b80639c83c37811610149578063a9059cbb11610123578063a9059cbb1461076f578063b1b591011461078f578063b2967e02146107af578063bb27b8b8146107cf57600080fd5b80639c83c378146107185780639e50e47c14610739578063a457c2d71461074f57600080fd5b80637361eda31461062e5780638bcea939146106675780638da5cb5b1461069b57806395087af9146106b9578063958c2e52146106cf57806395d89b411461070357600080fd5b80633c0946b71161024f57806353d6ece311610208578063656a0ff1116101e2578063656a0ff1146105ac57806367a7601c146105cd57806370a08231146105e3578063715018a61461061957600080fd5b806353d6ece314610560578063622bbb23146105765780636350d4001461059657600080fd5b80633c0946b7146104b85780633d508e0f146104ce5780633e2db054146104fe578063413f75051461051e57806352185cc8146105345780635348f9b21461054a57600080fd5b80631fbd1c92116102bc5780632b0cc3f2116102965780632b0cc3f21461042f578063313ce56714610467578063377c664314610483578063395093511461049857600080fd5b80631fbd1c92146103da578063232050f9146103fa57806323b872dd1461040f57600080fd5b806306fdde031461030f5780630886f8df1461033a578063095ea7b31461035c5780630f9cdeb71461038c5780630faeb408146103b057806318160ddd146103c557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610984565b604051610331919061230f565b60405180910390f35b34801561034657600080fd5b5061035a61035536600461236d565b610a16565b005b34801561036857600080fd5b5061037c61037736600461239d565b610a67565b6040519015158152602001610331565b34801561039857600080fd5b506103a260115481565b604051908152602001610331565b3480156103bc57600080fd5b5061035a610a81565b3480156103d157600080fd5b506002546103a2565b3480156103e657600080fd5b5061035a6103f53660046123c9565b610ad3565b34801561040657600080fd5b5061037c610b28565b34801561041b57600080fd5b5061037c61042a3660046123fe565b610b65565b34801561043b57600080fd5b50600d5461044f906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b34801561047357600080fd5b5060405160128152602001610331565b34801561048f57600080fd5b5061037c610b89565b3480156104a457600080fd5b5061037c6104b336600461239d565b610bc7565b3480156104c457600080fd5b506103a260125481565b3480156104da57600080fd5b5061037c6104e936600461243f565b60186020526000908152604090205460ff1681565b34801561050a57600080fd5b5061035a6105193660046123c9565b610be9565b34801561052a57600080fd5b506103a2600e5481565b34801561054057600080fd5b506103a260135481565b34801561055657600080fd5b506103a260145481565b34801561056c57600080fd5b506103a260075481565b34801561058257600080fd5b5061035a61059136600461245c565b610cb5565b3480156105a257600080fd5b506103a2600f5481565b3480156105b857600080fd5b5060055461037c90600160a81b900460ff1681565b3480156105d957600080fd5b506103a260155481565b3480156105ef57600080fd5b506103a26105fe36600461243f565b6001600160a01b031660009081526020819052604090205490565b34801561062557600080fd5b5061035a610d48565b34801561063a57600080fd5b5061037c61064936600461243f565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561067357600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b3480156106a757600080fd5b506005546001600160a01b031661044f565b3480156106c557600080fd5b506103a260095481565b3480156106db57600080fd5b5061044f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561070f57600080fd5b50610324610d7e565b34801561072457600080fd5b50600d5461037c90600160a01b900460ff1681565b34801561074557600080fd5b506103a260105481565b34801561075b57600080fd5b5061037c61076a36600461239d565b610d8d565b34801561077b57600080fd5b5061037c61078a36600461239d565b610de4565b34801561079b57600080fd5b5061035a6107aa36600461247e565b610df2565b3480156107bb57600080fd5b5061035a6107ca36600461247e565b610eac565b3480156107db57600080fd5b5061035a6107ea3660046123c9565b610f65565b3480156107fb57600080fd5b506103a260065481565b34801561081157600080fd5b5061037c61082036600461247e565b610fee565b34801561083157600080fd5b5061037c61084036600461247e565b6111aa565b34801561085157600080fd5b5061035a61086036600461243f565b611250565b34801561087157600080fd5b5060085461037c9060ff1681565b34801561088b57600080fd5b506103a2600a5481565b3480156108a157600080fd5b5061037c6108b036600461243f565b60176020526000908152604090205460ff1681565b3480156108d157600080fd5b5061035a6108e036600461243f565b6112d7565b3480156108f157600080fd5b5060085461037c90610100900460ff1681565b34801561091057600080fd5b506103a261091f366004612497565b61135e565b34801561093057600080fd5b5061035a61093f36600461245c565b611389565b34801561095057600080fd5b5061035a61095f36600461243f565b61141c565b34801561097057600080fd5b50600c5461044f906001600160a01b031681565b606060038054610993906124d0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906124d0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6005546001600160a01b03163314610a495760405162461bcd60e51b8152600401610a409061250a565b60405180910390fd5b60058054911515600160a81b0260ff60a81b19909216919091179055565b600033610a758185856114b7565b60019150505b92915050565b6005546001600160a01b03163314610aab5760405162461bcd60e51b8152600401610a409061250a565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610afd5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610b555760405162461bcd60e51b8152600401610a409061250a565b506008805460ff19169055600190565b600033610b738582856114c9565b610b7e85858561152f565b506001949350505050565b6005546000906001600160a01b03163314610bb65760405162461bcd60e51b8152600401610a409061250a565b506008805461ff0019169055600190565b600033610a75818585610bda838361135e565b610be49190612555565b6114b7565b6005546001600160a01b03163314610c135760405162461bcd60e51b8152600401610a409061250a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610ca75760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d206044820152692fb4b9a232bc2830b4b960b11b6064820152608401610a40565b610cb1828261158e565b5050565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610a409061250a565b600f8290556010819055610cf38183612555565b600e819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a409061250a565b610d7c60006115e2565b565b606060048054610993906124d0565b60003381610d9b828661135e565b905083811015610dd757604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a40565b610b7e82868684036114b7565b600033610a7581858561152f565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610a409061250a565b6002811015610e865760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574205f6d6178546f6b656e735065725472616e7366657260448201526f206c6f776572207468616e20302e322560801b6064820152608401610a40565b6103e8610e9260025490565b610e9c9083612568565b610ea6919061257f565b600a5550565b6005546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a409061250a565b6005811015610f3f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574205f6d617857616c6c6574506572416464726573732060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a40565b6103e8610f4b60025490565b610f559083612568565b610f5f919061257f565b60095550565b6005546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546000906001600160a01b0316331461101b5760405162461bcd60e51b8152600401610a409061250a565b620186a061102860025490565b611032919061257f565b82101561109f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a40565b620186a06110ac60025490565b6110b8906101f4612568565b6110c2919061257f565b82111561112e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a40565b60075482111561119c5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152721b8817db585e14ddd85c189858dad31a5b5a5d606a1b6064820152608401610a40565b50600681905560015b919050565b6005546000906001600160a01b031633146111d75760405162461bcd60e51b8152600401610a409061250a565b6006548210156112475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152740817db5a5b94ddd85c189858dad51c995cda1bdb19605a1b6064820152608401610a40565b50600755600190565b6005546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a409061250a565b600d546040516001600160a01b03918216918316907fb84ab223ec14c96484dc94cd1b5e9325788b491e5dd2718b54adce84eeede51190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a409061250a565b600c546040516001600160a01b03918216918316907f854264b92ce4ebf173b90dbb6d1c80cb903427f5a9ec01a9b6d0bb69f1a8b0ad90600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a409061250a565b601282905560138190556113c78183612555565b6011819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b031633146114465760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a40565b6114b4816115e2565b50565b6114c48383836001611634565b505050565b60006114d5848461135e565b90506000198114611529578181101561151a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a40565b61152984848484036000611634565b50505050565b6001600160a01b03831661155957604051634b637e8f60e11b815260006004820152602401610a40565b6001600160a01b0382166115835760405163ec442f0560e01b815260006004820152602401610a40565b6114c4838383611709565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661165e5760405163e602df0560e01b815260006004820152602401610a40565b6001600160a01b03831661168857604051634a1406b160e11b815260006004820152602401610a40565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561152957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116fb91815260200190565b60405180910390a350505050565b8060000361171d576114c483836000611ebd565b60085460ff1615611be7576005546001600160a01b0384811691161480159061175457506005546001600160a01b03838116911614155b801561176857506001600160a01b03821615155b801561177f57506001600160a01b03821661dead14155b80156117955750600554600160a01b900460ff16155b15611be757600d54600160a01b900460ff1661182f576001600160a01b03831660009081526016602052604090205460ff16806117ea57506001600160a01b03821660009081526016602052604090205460ff165b61182f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a40565b600854610100900460ff1615611979576005546001600160a01b0383811691161480159061188f57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156118cd57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561197957326000908152600b602052604090205443116119665760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a40565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff1680156119ba57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600a54811115611a305760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152752fb6b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a40565b6009546001600160a01b038316600090815260208190526040902054611a569083612555565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b611be7565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5d57600a54811115611a9a5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401610a40565b6001600160a01b03821660009081526017602052604090205460ff16611be7576009546001600160a01b038316600090815260208190526040902054611ba39083612555565b1115611be75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b3060009081526020819052604090205460065481108015908190611c145750600554600160a81b900460ff165b8015611c2a5750600554600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576005805460ff60a01b1916600160a01b179055611cb9611fe7565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611ea9576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000601154115b15611dde57611d756064611d6f6011548861212490919063ffffffff16565b90612137565b905060115460135482611d889190612568565b611d92919061257f565b60156000828254611da39190612555565b9091555050601154601254611db89083612568565b611dc2919061257f565b60146000828254611dd39190612555565b90915550611e8b9050565b6001600160a01b03871660009081526018602052604090205460ff168015611e0857506000600e54115b15611e8b57611e276064611d6f600e548861212490919063ffffffff16565b9050600e5460105482611e3a9190612568565b611e44919061257f565b60156000828254611e559190612555565b9091555050600e54600f54611e6a9083612568565b611e74919061257f565b60146000828254611e859190612555565b90915550505b8015611e9c57611e9c873083611ebd565b611ea681866125a1565b94505b611eb4878787611ebd565b50505050505050565b6001600160a01b038316611ee8578060026000828254611edd9190612555565b90915550611f5a9050565b6001600160a01b03831660009081526020819052604090205481811015611f3b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a40565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f7657600280548290039055611f95565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fda91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145461200b9190612555565b9050600082158061201a575081155b1561202457505050565b6007548311156120345760075492505b4761203e84612143565b600061204a4783612303565b9050600061206785611d6f6015548561212490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b505050505050505050565b60006121308284612568565b9392505050565b6000612130828461257f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612178576121786125b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221a91906125ca565b8160018151811061222d5761222d6125b4565b60200260200101906001600160a01b031690816001600160a01b031681525050612278307f0000000000000000000000000000000000000000000000000000000000000000846114b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906122cd9085906000908690309042906004016125e7565b600060405180830381600087803b1580156122e757600080fd5b505af11580156122fb573d6000803e3d6000fd5b505050505050565b600061213082846125a1565b600060208083528351808285015260005b8181101561233c57858101830151858201604001528201612320565b506000604082860101526040601f19601f8301168501019250505092915050565b803580151581146111a557600080fd5b60006020828403121561237f57600080fd5b6121308261235d565b6001600160a01b03811681146114b457600080fd5b600080604083850312156123b057600080fd5b82356123bb81612388565b946020939093013593505050565b600080604083850312156123dc57600080fd5b82356123e781612388565b91506123f56020840161235d565b90509250929050565b60008060006060848603121561241357600080fd5b833561241e81612388565b9250602084013561242e81612388565b929592945050506040919091013590565b60006020828403121561245157600080fd5b813561213081612388565b6000806040838503121561246f57600080fd5b50508035926020909101359150565b60006020828403121561249057600080fd5b5035919050565b600080604083850312156124aa57600080fd5b82356124b581612388565b915060208301356124c581612388565b809150509250929050565b600181811c908216806124e457607f821691505b60208210810361250457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a7b57610a7b61253f565b8082028115828204841417610a7b57610a7b61253f565b60008261259c57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610a7b57610a7b61253f565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125dc57600080fd5b815161213081612388565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126375784516001600160a01b031683529383019391830191600101612612565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122024acba70e332035c8614f9ca46ae5dbd370a75c1bc58d49d6238cb2faa81a82d64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106103035760003560e01c80637361eda311610190578063bbd6d962116100dc578063cb3cd3f911610095578063dd62ed3e1161006f578063dd62ed3e14610904578063f043106a14610924578063f2fde38b14610944578063f99e0bf71461096457600080fd5b8063cb3cd3f914610895578063d3f2d9bd146108c5578063d910be0c146108e557600080fd5b8063bbd6d962146107ef578063c1cdddad14610805578063c2bf1b6914610825578063c3c884b414610845578063c3e5c04714610865578063c437c3961461087f57600080fd5b80639c83c37811610149578063a9059cbb11610123578063a9059cbb1461076f578063b1b591011461078f578063b2967e02146107af578063bb27b8b8146107cf57600080fd5b80639c83c378146107185780639e50e47c14610739578063a457c2d71461074f57600080fd5b80637361eda31461062e5780638bcea939146106675780638da5cb5b1461069b57806395087af9146106b9578063958c2e52146106cf57806395d89b411461070357600080fd5b80633c0946b71161024f57806353d6ece311610208578063656a0ff1116101e2578063656a0ff1146105ac57806367a7601c146105cd57806370a08231146105e3578063715018a61461061957600080fd5b806353d6ece314610560578063622bbb23146105765780636350d4001461059657600080fd5b80633c0946b7146104b85780633d508e0f146104ce5780633e2db054146104fe578063413f75051461051e57806352185cc8146105345780635348f9b21461054a57600080fd5b80631fbd1c92116102bc5780632b0cc3f2116102965780632b0cc3f21461042f578063313ce56714610467578063377c664314610483578063395093511461049857600080fd5b80631fbd1c92146103da578063232050f9146103fa57806323b872dd1461040f57600080fd5b806306fdde031461030f5780630886f8df1461033a578063095ea7b31461035c5780630f9cdeb71461038c5780630faeb408146103b057806318160ddd146103c557600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610984565b604051610331919061230f565b60405180910390f35b34801561034657600080fd5b5061035a61035536600461236d565b610a16565b005b34801561036857600080fd5b5061037c61037736600461239d565b610a67565b6040519015158152602001610331565b34801561039857600080fd5b506103a260115481565b604051908152602001610331565b3480156103bc57600080fd5b5061035a610a81565b3480156103d157600080fd5b506002546103a2565b3480156103e657600080fd5b5061035a6103f53660046123c9565b610ad3565b34801561040657600080fd5b5061037c610b28565b34801561041b57600080fd5b5061037c61042a3660046123fe565b610b65565b34801561043b57600080fd5b50600d5461044f906001600160a01b031681565b6040516001600160a01b039091168152602001610331565b34801561047357600080fd5b5060405160128152602001610331565b34801561048f57600080fd5b5061037c610b89565b3480156104a457600080fd5b5061037c6104b336600461239d565b610bc7565b3480156104c457600080fd5b506103a260125481565b3480156104da57600080fd5b5061037c6104e936600461243f565b60186020526000908152604090205460ff1681565b34801561050a57600080fd5b5061035a6105193660046123c9565b610be9565b34801561052a57600080fd5b506103a2600e5481565b34801561054057600080fd5b506103a260135481565b34801561055657600080fd5b506103a260145481565b34801561056c57600080fd5b506103a260075481565b34801561058257600080fd5b5061035a61059136600461245c565b610cb5565b3480156105a257600080fd5b506103a2600f5481565b3480156105b857600080fd5b5060055461037c90600160a81b900460ff1681565b3480156105d957600080fd5b506103a260155481565b3480156105ef57600080fd5b506103a26105fe36600461243f565b6001600160a01b031660009081526020819052604090205490565b34801561062557600080fd5b5061035a610d48565b34801561063a57600080fd5b5061037c61064936600461243f565b6001600160a01b031660009081526016602052604090205460ff1690565b34801561067357600080fd5b5061044f7f0000000000000000000000006f358c9d28191eb1fda953a584095d20ad6e856f81565b3480156106a757600080fd5b506005546001600160a01b031661044f565b3480156106c557600080fd5b506103a260095481565b3480156106db57600080fd5b5061044f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561070f57600080fd5b50610324610d7e565b34801561072457600080fd5b50600d5461037c90600160a01b900460ff1681565b34801561074557600080fd5b506103a260105481565b34801561075b57600080fd5b5061037c61076a36600461239d565b610d8d565b34801561077b57600080fd5b5061037c61078a36600461239d565b610de4565b34801561079b57600080fd5b5061035a6107aa36600461247e565b610df2565b3480156107bb57600080fd5b5061035a6107ca36600461247e565b610eac565b3480156107db57600080fd5b5061035a6107ea3660046123c9565b610f65565b3480156107fb57600080fd5b506103a260065481565b34801561081157600080fd5b5061037c61082036600461247e565b610fee565b34801561083157600080fd5b5061037c61084036600461247e565b6111aa565b34801561085157600080fd5b5061035a61086036600461243f565b611250565b34801561087157600080fd5b5060085461037c9060ff1681565b34801561088b57600080fd5b506103a2600a5481565b3480156108a157600080fd5b5061037c6108b036600461243f565b60176020526000908152604090205460ff1681565b3480156108d157600080fd5b5061035a6108e036600461243f565b6112d7565b3480156108f157600080fd5b5060085461037c90610100900460ff1681565b34801561091057600080fd5b506103a261091f366004612497565b61135e565b34801561093057600080fd5b5061035a61093f36600461245c565b611389565b34801561095057600080fd5b5061035a61095f36600461243f565b61141c565b34801561097057600080fd5b50600c5461044f906001600160a01b031681565b606060038054610993906124d0565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf906124d0565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6005546001600160a01b03163314610a495760405162461bcd60e51b8152600401610a409061250a565b60405180910390fd5b60058054911515600160a81b0260ff60a81b19909216919091179055565b600033610a758185856114b7565b60019150505b92915050565b6005546001600160a01b03163314610aab5760405162461bcd60e51b8152600401610a409061250a565b600d805460ff60a01b1916600160a01b1790556005805460ff60a81b1916600160a81b179055565b6005546001600160a01b03163314610afd5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546000906001600160a01b03163314610b555760405162461bcd60e51b8152600401610a409061250a565b506008805460ff19169055600190565b600033610b738582856114c9565b610b7e85858561152f565b506001949350505050565b6005546000906001600160a01b03163314610bb65760405162461bcd60e51b8152600401610a409061250a565b506008805461ff0019169055600190565b600033610a75818585610bda838361135e565b610be49190612555565b6114b7565b6005546001600160a01b03163314610c135760405162461bcd60e51b8152600401610a409061250a565b7f0000000000000000000000006f358c9d28191eb1fda953a584095d20ad6e856f6001600160a01b0316826001600160a01b031603610ca75760405162461bcd60e51b815260206004820152602a60248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d206044820152692fb4b9a232bc2830b4b960b11b6064820152608401610a40565b610cb1828261158e565b5050565b6005546001600160a01b03163314610cdf5760405162461bcd60e51b8152600401610a409061250a565b600f8290556010819055610cf38183612555565b600e819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b03163314610d725760405162461bcd60e51b8152600401610a409061250a565b610d7c60006115e2565b565b606060048054610993906124d0565b60003381610d9b828661135e565b905083811015610dd757604051632983c0c360e21b81526001600160a01b03861660048201526024810182905260448101859052606401610a40565b610b7e82868684036114b7565b600033610a7581858561152f565b6005546001600160a01b03163314610e1c5760405162461bcd60e51b8152600401610a409061250a565b6002811015610e865760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574205f6d6178546f6b656e735065725472616e7366657260448201526f206c6f776572207468616e20302e322560801b6064820152608401610a40565b6103e8610e9260025490565b610e9c9083612568565b610ea6919061257f565b600a5550565b6005546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610a409061250a565b6005811015610f3f5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574205f6d617857616c6c6574506572416464726573732060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a40565b6103e8610f4b60025490565b610f559083612568565b610f5f919061257f565b60095550565b6005546001600160a01b03163314610f8f5760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f43e5678c2fcaa42d15df6505520f417a1fbf973324cb2f7c106ebdbd662d0c3d910160405180910390a25050565b6005546000906001600160a01b0316331461101b5760405162461bcd60e51b8152600401610a409061250a565b620186a061102860025490565b611032919061257f565b82101561109f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610a40565b620186a06110ac60025490565b6110b8906101f4612568565b6110c2919061257f565b82111561112e5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610a40565b60075482111561119c5760405162461bcd60e51b815260206004820152603360248201527f5377617020616d6f756e742063616e6e6f7420626520686967686572207468616044820152721b8817db585e14ddd85c189858dad31a5b5a5d606a1b6064820152608401610a40565b50600681905560015b919050565b6005546000906001600160a01b031633146111d75760405162461bcd60e51b8152600401610a409061250a565b6006548210156112475760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152740817db5a5b94ddd85c189858dad51c995cda1bdb19605a1b6064820152608401610a40565b50600755600190565b6005546001600160a01b0316331461127a5760405162461bcd60e51b8152600401610a409061250a565b600d546040516001600160a01b03918216918316907fb84ab223ec14c96484dc94cd1b5e9325788b491e5dd2718b54adce84eeede51190600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146113015760405162461bcd60e51b8152600401610a409061250a565b600c546040516001600160a01b03918216918316907f854264b92ce4ebf173b90dbb6d1c80cb903427f5a9ec01a9b6d0bb69f1a8b0ad90600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031633146113b35760405162461bcd60e51b8152600401610a409061250a565b601282905560138190556113c78183612555565b6011819055600c1015610cb15760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313225206f72206c6573730000006044820152606401610a40565b6005546001600160a01b031633146114465760405162461bcd60e51b8152600401610a409061250a565b6001600160a01b0381166114ab5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a40565b6114b4816115e2565b50565b6114c48383836001611634565b505050565b60006114d5848461135e565b90506000198114611529578181101561151a57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610a40565b61152984848484036000611634565b50505050565b6001600160a01b03831661155957604051634b637e8f60e11b815260006004820152602401610a40565b6001600160a01b0382166115835760405163ec442f0560e01b815260006004820152602401610a40565b6114c4838383611709565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917f02d59e6bf2c101e2d8367c2a27c51357eccfebcca0d09aa27c00e24e946c0d6a91a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03841661165e5760405163e602df0560e01b815260006004820152602401610a40565b6001600160a01b03831661168857604051634a1406b160e11b815260006004820152602401610a40565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561152957826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516116fb91815260200190565b60405180910390a350505050565b8060000361171d576114c483836000611ebd565b60085460ff1615611be7576005546001600160a01b0384811691161480159061175457506005546001600160a01b03838116911614155b801561176857506001600160a01b03821615155b801561177f57506001600160a01b03821661dead14155b80156117955750600554600160a01b900460ff16155b15611be757600d54600160a01b900460ff1661182f576001600160a01b03831660009081526016602052604090205460ff16806117ea57506001600160a01b03821660009081526016602052604090205460ff165b61182f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a40565b600854610100900460ff1615611979576005546001600160a01b0383811691161480159061188f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156118cd57507f0000000000000000000000006f358c9d28191eb1fda953a584095d20ad6e856f6001600160a01b0316826001600160a01b031614155b1561197957326000908152600b602052604090205443116119665760405162461bcd60e51b815260206004820152604760248201527f5f7570646174653a3a205472616e736665722044656c617920656e61626c656460448201527f2e20204f6e6c79206f6e652070757263686173652070657220626c6f636b2061606482015266363637bbb2b21760c91b608482015260a401610a40565b326000908152600b602052604090204390555b6001600160a01b03831660009081526018602052604090205460ff1680156119ba57506001600160a01b03821660009081526017602052604090205460ff16155b15611a9f57600a54811115611a305760405162461bcd60e51b815260206004820152603660248201527f427579207472616e7366657220616d6f756e74206578636565647320746865206044820152752fb6b0bc2a37b5b2b739a832b92a3930b739b332b91760511b6064820152608401610a40565b6009546001600160a01b038316600090815260208190526040902054611a569083612555565b1115611a9a5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b611be7565b6001600160a01b03821660009081526018602052604090205460ff168015611ae057506001600160a01b03831660009081526017602052604090205460ff16155b15611b5d57600a54811115611a9a5760405162461bcd60e51b815260206004820152603760248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f205f6d6178546f6b656e735065725472616e736665722e0000000000000000006064820152608401610a40565b6001600160a01b03821660009081526017602052604090205460ff16611be7576009546001600160a01b038316600090815260208190526040902054611ba39083612555565b1115611be75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a40565b3060009081526020819052604090205460065481108015908190611c145750600554600160a81b900460ff165b8015611c2a5750600554600160a01b900460ff16155b8015611c4f57506001600160a01b03851660009081526018602052604090205460ff16155b8015611c7457506001600160a01b03851660009081526016602052604090205460ff16155b8015611c9957506001600160a01b03841660009081526016602052604090205460ff16155b15611cc7576005805460ff60a01b1916600160a01b179055611cb9611fe7565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b909204821615911680611d1557506001600160a01b03851660009081526016602052604090205460ff165b15611d1e575060005b60008115611ea9576001600160a01b03861660009081526018602052604090205460ff168015611d5057506000601154115b15611dde57611d756064611d6f6011548861212490919063ffffffff16565b90612137565b905060115460135482611d889190612568565b611d92919061257f565b60156000828254611da39190612555565b9091555050601154601254611db89083612568565b611dc2919061257f565b60146000828254611dd39190612555565b90915550611e8b9050565b6001600160a01b03871660009081526018602052604090205460ff168015611e0857506000600e54115b15611e8b57611e276064611d6f600e548861212490919063ffffffff16565b9050600e5460105482611e3a9190612568565b611e44919061257f565b60156000828254611e559190612555565b9091555050600e54600f54611e6a9083612568565b611e74919061257f565b60146000828254611e859190612555565b90915550505b8015611e9c57611e9c873083611ebd565b611ea681866125a1565b94505b611eb4878787611ebd565b50505050505050565b6001600160a01b038316611ee8578060026000828254611edd9190612555565b90915550611f5a9050565b6001600160a01b03831660009081526020819052604090205481811015611f3b5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610a40565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b038216611f7657600280548290039055611f95565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611fda91815260200190565b60405180910390a3505050565b306000908152602081905260408120549050600060155460145461200b9190612555565b9050600082158061201a575081155b1561202457505050565b6007548311156120345760075492505b4761203e84612143565b600061204a4783612303565b9050600061206785611d6f6015548561212490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d80600081146120bf576040519150601f19603f3d011682016040523d82523d6000602084013e6120c4565b606091505b5050600c546040519195506001600160a01b0316904790600081818185875af1925050503d8060008114612114576040519150601f19603f3d011682016040523d82523d6000602084013e612119565b606091505b505050505050505050565b60006121308284612568565b9392505050565b6000612130828461257f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612178576121786125b4565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156121f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061221a91906125ca565b8160018151811061222d5761222d6125b4565b60200260200101906001600160a01b031690816001600160a01b031681525050612278307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846114b7565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906122cd9085906000908690309042906004016125e7565b600060405180830381600087803b1580156122e757600080fd5b505af11580156122fb573d6000803e3d6000fd5b505050505050565b600061213082846125a1565b600060208083528351808285015260005b8181101561233c57858101830151858201604001528201612320565b506000604082860101526040601f19601f8301168501019250505092915050565b803580151581146111a557600080fd5b60006020828403121561237f57600080fd5b6121308261235d565b6001600160a01b03811681146114b457600080fd5b600080604083850312156123b057600080fd5b82356123bb81612388565b946020939093013593505050565b600080604083850312156123dc57600080fd5b82356123e781612388565b91506123f56020840161235d565b90509250929050565b60008060006060848603121561241357600080fd5b833561241e81612388565b9250602084013561242e81612388565b929592945050506040919091013590565b60006020828403121561245157600080fd5b813561213081612388565b6000806040838503121561246f57600080fd5b50508035926020909101359150565b60006020828403121561249057600080fd5b5035919050565b600080604083850312156124aa57600080fd5b82356124b581612388565b915060208301356124c581612388565b809150509250929050565b600181811c908216806124e457607f821691505b60208210810361250457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b80820180821115610a7b57610a7b61253f565b8082028115828204841417610a7b57610a7b61253f565b60008261259c57634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610a7b57610a7b61253f565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156125dc57600080fd5b815161213081612388565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156126375784516001600160a01b031683529383019391830191600101612612565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122024acba70e332035c8614f9ca46ae5dbd370a75c1bc58d49d6238cb2faa81a82d64736f6c63430008130033
Deployed Bytecode Sourcemap
26354:15275:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12824:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32910:111;;;;;;;;;;-1:-1:-1;32910:111:0;;;;;:::i;:::-;;:::i;:::-;;15117:190;;;;;;;;;;-1:-1:-1;15117:190:0;;;;;:::i;:::-;;:::i;:::-;;;1538:14:1;;1531:22;1513:41;;1501:2;1486:18;15117:190:0;1373:187:1;27279:32:0;;;;;;;;;;;;;;;;;;;1711:25:1;;;1699:2;1684:18;27279:32:0;1565:177:1;30245:123:0;;;;;;;;;;;;;:::i;13926:99::-;;;;;;;;;;-1:-1:-1;14005:12:0;;13926:99;;32645:147;;;;;;;;;;-1:-1:-1;32645:147:0;;;;;:::i;:::-;;:::i;30443:131::-;;;;;;;;;;;;;:::i;15885:249::-;;;;;;;;;;-1:-1:-1;15885:249:0;;;;;:::i;:::-;;:::i;27084:34::-;;;;;;;;;;-1:-1:-1;27084:34:0;;;;-1:-1:-1;;;;;27084:34:0;;;;;;-1:-1:-1;;;;;2692:32:1;;;2674:51;;2662:2;2647:18;27084:34:0;2528:203:1;13777:84:0;;;;;;;;;;-1:-1:-1;13777:84:0;;13851:2;2878:36:1;;2866:2;2851:18;13777:84:0;2736:184:1;30645:132:0;;;;;;;;;;;;;:::i;16543:238::-;;;;;;;;;;-1:-1:-1;16543:238:0;;;;;:::i;:::-;;:::i;27318:27::-;;;;;;;;;;;;;;;;27816:42;;;;;;;;;;-1:-1:-1;27816:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34495:265;;;;;;;;;;-1:-1:-1;34495:265:0;;;;;:::i;:::-;;:::i;27173:31::-;;;;;;;;;;;;;;;;27352:27;;;;;;;;;;;;;;;;27388:34;;;;;;;;;;;;;;;;26665:32;;;;;;;;;;;;;;;;33185:324;;;;;;;;;;-1:-1:-1;33185:324:0;;;;;:::i;:::-;;:::i;27211:26::-;;;;;;;;;;;;;;;;26577:39;;;;;;;;;;-1:-1:-1;26577:39:0;;;;-1:-1:-1;;;26577:39:0;;;;;;27429:34;;;;;;;;;;;;;;;;14088:118;;;;;;;;;;-1:-1:-1;14088:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;14180:18:0;14153:7;14180:18;;;;;;;;;;;;14088:118;24985:103;;;;;;;;;;;;;:::i;35614:127::-;;;;;;;;;;-1:-1:-1;35614:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;35710:23:0;35686:4;35710:23;;;:14;:23;;;;;;;;;35614:127;26482:34;;;;;;;;;;;;;;;24334:87;;;;;;;;;;-1:-1:-1;24407:6:0;;-1:-1:-1;;;;;24407:6:0;24334:87;;26822:35;;;;;;;;;;;;;;;;26434:41;;;;;;;;;;;;;;;13034:95;;;;;;;;;;;;;:::i;27127:37::-;;;;;;;;;;-1:-1:-1;27127:37:0;;;;-1:-1:-1;;;27127:37:0;;;;;;27244:26;;;;;;;;;;;;;;;;17469:504;;;;;;;;;;-1:-1:-1;17469:504:0;;;;;:::i;:::-;;:::i;14411:182::-;;;;;;;;;;-1:-1:-1;14411:182:0;;;;;:::i;:::-;;:::i;31888:225::-;;;;;;;;;;-1:-1:-1;31888:225:0;;;;;:::i;:::-;;:::i;32238:221::-;;;;;;;;;;-1:-1:-1;32238:221:0;;;;;:::i;:::-;;:::i;34172:188::-;;;;;;;;;;-1:-1:-1;34172:188:0;;;;;:::i;:::-;;:::i;26623:35::-;;;;;;;;;;;;;;;;30785:621;;;;;;;;;;-1:-1:-1;30785:621:0;;;;;:::i;:::-;;:::i;31414:316::-;;;;;;;;;;-1:-1:-1;31414:316:0;;;;;:::i;:::-;;:::i;35399:207::-;;;;;;;;;;-1:-1:-1;35399:207:0;;;;;:::i;:::-;;:::i;26724:46::-;;;;;;;;;;-1:-1:-1;26724:46:0;;;;;;;;26864:36;;;;;;;;;;;;;;;;27607:51;;;;;;;;;;-1:-1:-1;27607:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35042:223;;;;;;;;;;-1:-1:-1;35042:223:0;;;;;:::i;:::-;;:::i;26777:38::-;;;;;;;;;;-1:-1:-1;26777:38:0;;;;;;;;;;;14656:142;;;;;;;;;;-1:-1:-1;14656:142:0;;;;;:::i;:::-;;:::i;33674:331::-;;;;;;;;;;-1:-1:-1;33674:331:0;;;;;:::i;:::-;;:::i;25243:238::-;;;;;;;;;;-1:-1:-1;25243:238:0;;;;;:::i;:::-;;:::i;27043:34::-;;;;;;;;;;-1:-1:-1;27043:34:0;;;;-1:-1:-1;;;;;27043:34:0;;;12824:91;12869:13;12902:5;12895:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12824:91;:::o;32910:111::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;;;;;;;;;32984:19:::1;:29:::0;;;::::1;;-1:-1:-1::0;;;32984:29:0::1;-1:-1:-1::0;;;;32984:29:0;;::::1;::::0;;;::::1;::::0;;32910:111::o;15117:190::-;15190:4;9993:10;15246:31;9993:10;15262:7;15271:5;15246:8;:31::i;:::-;15295:4;15288:11;;;15117:190;;;;;:::o;30245:123::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;30299:17:::1;:24:::0;;-1:-1:-1;;;;30299:24:0::1;-1:-1:-1::0;;;30299:24:0::1;::::0;;30334:19:::1;:26:::0;;-1:-1:-1;;;;30334:26:0::1;-1:-1:-1::0;;;30334:26:0::1;::::0;;30245:123::o;32645:147::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32750:27:0;;;::::1;;::::0;;;:19:::1;:27;::::0;;;;:34;;-1:-1:-1;;32750:34:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32645:147::o;30443:131::-;24407:6;;30492:4;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;-1:-1:-1;30509:27:0::1;:35:::0;;-1:-1:-1;;30509:35:0::1;::::0;;;30443:131;:::o;15885:249::-;15972:4;9993:10;16030:37;16046:4;9993:10;16061:5;16030:15;:37::i;:::-;16078:26;16088:4;16094:2;16098:5;16078:9;:26::i;:::-;-1:-1:-1;16122:4:0;;15885:249;-1:-1:-1;;;;15885:249:0:o;30645:132::-;24407:6;;30703:4;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;-1:-1:-1;30720:19:0::1;:27:::0;;-1:-1:-1;;30720:27:0::1;::::0;;:19:::1;30645:132:::0;:::o;16543:238::-;16631:4;9993:10;16687:64;9993:10;16703:7;16740:10;16712:25;9993:10;16703:7;16712:9;:25::i;:::-;:38;;;;:::i;:::-;16687:8;:64::i;34495:265::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;34635:9:::1;-1:-1:-1::0;;;;;34627:17:0::1;:4;-1:-1:-1::0;;;;;34627:17:0::1;::::0;34605:109:::1;;;::::0;-1:-1:-1;;;34605:109:0;;5447:2:1;34605:109:0::1;::::0;::::1;5429:21:1::0;5486:2;5466:18;;;5459:30;5525:34;5505:18;;;5498:62;-1:-1:-1;;;5576:18:1;;;5569:40;5626:19;;34605:109:0::1;5245:406:1::0;34605:109:0::1;34727:25;34740:4;34746:5;34727:12;:25::i;:::-;34495:265:::0;;:::o;33185:324::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;33309:11:::1;:26:::0;;;33346:11:::1;:25:::0;;;33401::::1;33360:11:::0;33323:12;33401:25:::1;:::i;:::-;33382:16;:44:::0;;;33465:2:::1;-1:-1:-1::0;33445:22:0::1;33437:64;;;::::0;-1:-1:-1;;;33437:64:0;;5858:2:1;33437:64:0::1;::::0;::::1;5840:21:1::0;5897:2;5877:18;;;5870:30;5936:31;5916:18;;;5909:59;5985:18;;33437:64:0::1;5656:353:1::0;24985:103:0;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;25050:30:::1;25077:1;25050:18;:30::i;:::-;24985:103::o:0;13034:95::-;13081:13;13114:7;13107:14;;;;;:::i;17469:504::-;17564:4;9993:10;17564:4;17647:25;9993:10;17664:7;17647:9;:25::i;:::-;17620:52;;17706:17;17687:16;:36;17683:150;;;17747:74;;-1:-1:-1;;;17747:74:0;;-1:-1:-1;;;;;6234:32:1;;17747:74:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;17747:74:0;6014:345:1;17683:150:0;17868:62;17877:5;17884:7;17912:17;17893:16;:36;17868:8;:62::i;14411:182::-;14480:4;9993:10;14536:27;9993:10;14553:2;14557:5;14536:9;:27::i;31888:225::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;31985:1:::1;31975:6;:11;;31967:72;;;::::0;-1:-1:-1;;;31967:72:0;;6566:2:1;31967:72:0::1;::::0;::::1;6548:21:1::0;6605:2;6585:18;;;6578:30;6644:34;6624:18;;;6617:62;-1:-1:-1;;;6695:18:1;;;6688:46;6751:19;;31967:72:0::1;6364:412:1::0;31967:72:0::1;32101:4;32084:13;14005:12:::0;;;13926:99;32084:13:::1;32075:22;::::0;:6;:22:::1;:::i;:::-;32074:31;;;;:::i;:::-;32050:21;:55:::0;-1:-1:-1;31888:225:0:o;32238:221::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;32333:1:::1;32323:6;:11;;32315:71;;;::::0;-1:-1:-1;;;32315:71:0;;7378:2:1;32315:71:0::1;::::0;::::1;7360:21:1::0;7417:2;7397:18;;;7390:30;7456:34;7436:18;;;7429:62;-1:-1:-1;;;7507:18:1;;;7500:45;7562:19;;32315:71:0::1;7176:411:1::0;32315:71:0::1;32447:4;32430:13;14005:12:::0;;;13926:99;32430:13:::1;32421:22;::::0;:6;:22:::1;:::i;:::-;32420:31;;;;:::i;:::-;32397:20;:54:::0;-1:-1:-1;32238:221:0:o;34172:188::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34260:23:0;::::1;;::::0;;;:14:::1;:23;::::0;;;;;;;;:34;;-1:-1:-1;;34260:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;34310:42;;1513:41:1;;;34310:42:0::1;::::0;1486:18:1;34310:42:0::1;;;;;;;34172:188:::0;;:::o;30785:621::-;24407:6;;30880:4;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;30948:6:::1;30932:13;14005:12:::0;;;13926:99;30932:13:::1;:22;;;;:::i;:::-;30919:9;:35;;30897:138;;;::::0;-1:-1:-1;;;30897:138:0;;7794:2:1;30897:138:0::1;::::0;::::1;7776:21:1::0;7833:2;7813:18;;;7806:30;7872:34;7852:18;;;7845:62;-1:-1:-1;;;7923:18:1;;;7916:51;7984:19;;30897:138:0::1;7592:417:1::0;30897:138:0::1;31105:6;31088:13;14005:12:::0;;;13926:99;31088:13:::1;31082:19;::::0;:3:::1;:19;:::i;:::-;31081:30;;;;:::i;:::-;31068:9;:43;;31046:145;;;::::0;-1:-1:-1;;;31046:145:0;;8216:2:1;31046:145:0::1;::::0;::::1;8198:21:1::0;8255:2;8235:18;;;8228:30;8294:34;8274:18;;;8267:62;-1:-1:-1;;;8345:18:1;;;8338:50;8405:19;;31046:145:0::1;8014:416:1::0;31046:145:0::1;31237:17;;31224:9;:30;;31202:131;;;::::0;-1:-1:-1;;;31202:131:0;;8637:2:1;31202:131:0::1;::::0;::::1;8619:21:1::0;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:49;8825:19;;31202:131:0::1;8435:415:1::0;31202:131:0::1;-1:-1:-1::0;31344:20:0::1;:32:::0;;;31394:4:::1;24625:1;30785:621:::0;;;:::o;31414:316::-;24407:6;;31507:4;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;31559:20:::1;;31546:9;:33;;31524:136;;;::::0;-1:-1:-1;;;31524:136:0;;9057:2:1;31524:136:0::1;::::0;::::1;9039:21:1::0;9096:2;9076:18;;;9069:30;9135:34;9115:18;;;9108:62;-1:-1:-1;;;9186:18:1;;;9179:51;9247:19;;31524:136:0::1;8855:417:1::0;31524:136:0::1;-1:-1:-1::0;31671:17:0::1;:29:::0;31718:4:::1;::::0;31414:316::o;35399:207::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;35530:19:::1;::::0;35486:64:::1;::::0;-1:-1:-1;;;;;35530:19:0;;::::1;::::0;35486:64;::::1;::::0;::::1;::::0;35530:19:::1;::::0;35486:64:::1;35561:19;:37:::0;;-1:-1:-1;;;;;;35561:37:0::1;-1:-1:-1::0;;;;;35561:37:0;;;::::1;::::0;;;::::1;::::0;;35399:207::o;35042:223::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;35189:19:::1;::::0;35145:64:::1;::::0;-1:-1:-1;;;;;35189:19:0;;::::1;::::0;35145:64;::::1;::::0;::::1;::::0;35189:19:::1;::::0;35145:64:::1;35220:19;:37:::0;;-1:-1:-1;;;;;;35220:37:0::1;-1:-1:-1::0;;;;;35220:37:0;;;::::1;::::0;;;::::1;::::0;;35042:223::o;14656:142::-;-1:-1:-1;;;;;14763:18:0;;;14736:7;14763:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14656:142::o;33674:331::-;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;33799:12:::1;:27:::0;;;33837:12:::1;:26:::0;;;33894:27:::1;33852:11:::0;33814:12;33894:27:::1;:::i;:::-;33874:17;:47:::0;;;33961:2:::1;-1:-1:-1::0;33940:23:0::1;33932:65;;;::::0;-1:-1:-1;;;33932:65:0;;5858:2:1;33932:65:0::1;::::0;::::1;5840:21:1::0;5897:2;5877:18;;;5870:30;5936:31;5916:18;;;5909:59;5985:18;;33932:65:0::1;5656:353:1::0;25243:238:0;24407:6;;-1:-1:-1;;;;;24407:6:0;9993:10;24554:23;24546:68;;;;-1:-1:-1;;;24546:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25346:22:0;::::1;25324:110;;;::::0;-1:-1:-1;;;25324:110:0;;9479:2:1;25324:110:0::1;::::0;::::1;9461:21:1::0;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:36;9654:19;;25324:110:0::1;9277:402:1::0;25324:110:0::1;25445:28;25464:8;25445:18;:28::i;:::-;25243:238:::0;:::o;21666:138::-;21759:37;21768:5;21775:7;21784:5;21791:4;21759:8;:37::i;:::-;21666:138;;;:::o;23403:487::-;23503:24;23530:25;23540:5;23547:7;23530:9;:25::i;:::-;23503:52;;-1:-1:-1;;23570:16:0;:37;23566:317;;23647:5;23628:16;:24;23624:132;;;23680:60;;-1:-1:-1;;;23680:60:0;;-1:-1:-1;;;;;6234:32:1;;23680:60:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;23680:60:0;6014:345:1;23624:132:0;23799:57;23808:5;23815:7;23843:5;23824:16;:24;23850:5;23799:8;:57::i;:::-;23492:398;23403:487;;;:::o;18358:308::-;-1:-1:-1;;;;;18442:18:0;;18438:88;;18484:30;;-1:-1:-1;;;18484:30:0;;18511:1;18484:30;;;2674:51:1;2647:18;;18484:30:0;2528:203:1;18438:88:0;-1:-1:-1;;;;;18540:16:0;;18536:88;;18580:32;;-1:-1:-1;;;18580:32:0;;18609:1;18580:32;;;2674:51:1;2647:18;;18580:32:0;2528:203:1;18536:88:0;18634:24;18642:4;18648:2;18652:5;18634:7;:24::i;34768:140::-;-1:-1:-1;;;;;34835:16:0;;;;;;:10;:16;;;;;;:24;;-1:-1:-1;;34835:24:0;;;;;;;;;;34877:23;;34835:24;;:16;34877:23;;;34768:140;;:::o;25641:191::-;25734:6;;;-1:-1:-1;;;;;25751:17:0;;;-1:-1:-1;;;;;;25751:17:0;;;;;;;25784:40;;25734:6;;;25751:17;25734:6;;25784:40;;25715:16;;25784:40;25704:128;25641:191;:::o;22671:443::-;-1:-1:-1;;;;;22784:19:0;;22780:91;;22827:32;;-1:-1:-1;;;22827:32:0;;22856:1;22827:32;;;2674:51:1;2647:18;;22827:32:0;2528:203:1;22780:91:0;-1:-1:-1;;;;;22885:21:0;;22881:92;;22930:31;;-1:-1:-1;;;22930:31:0;;22958:1;22930:31;;;2674:51:1;2647:18;;22930:31:0;2528:203:1;22881:92:0;-1:-1:-1;;;;;22983:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;23029:78;;;;23080:7;-1:-1:-1;;;;;23064:31:0;23073:5;-1:-1:-1;;;;;23064:31:0;;23089:5;23064:31;;;;1711:25:1;;1699:2;1684:18;;1565:177;23064:31:0;;;;;;;;22671:443;;;;:::o;35749:4274::-;35875:6;35885:1;35875:11;35871:91;;35903:26;35917:4;35923:2;35927:1;35903:13;:26::i;35871:91::-;35978:27;;;;35974:2346;;;24407:6;;-1:-1:-1;;;;;36044:15:0;;;24407:6;;36044:15;;;;:49;;-1:-1:-1;24407:6:0;;-1:-1:-1;;;;;36080:13:0;;;24407:6;;36080:13;;36044:49;:86;;;;-1:-1:-1;;;;;;36114:16:0;;;;36044:86;:128;;;;-1:-1:-1;;;;;;36151:21:0;;36165:6;36151:21;;36044:128;:165;;;;-1:-1:-1;36194:15:0;;-1:-1:-1;;;36194:15:0;;;;36193:16;36044:165;36022:2287;;;36249:17;;-1:-1:-1;;;36249:17:0;;;;36244:217;;-1:-1:-1;;;;;36325:20:0;;;;;;:14;:20;;;;;;;;;:42;;-1:-1:-1;;;;;;36349:18:0;;;;;;:14;:18;;;;;;;;36325:42;36291:150;;;;-1:-1:-1;;;36291:150:0;;9886:2:1;36291:150:0;;;9868:21:1;9925:2;9905:18;;;9898:30;-1:-1:-1;;;9944:18:1;;;9937:52;10006:18;;36291:150:0;9684:346:1;36291:150:0;36617:19;;;;;;;36613:608;;;24407:6;;-1:-1:-1;;;;;36691:13:0;;;24407:6;;36691:13;;;;:68;;;36747:11;-1:-1:-1;;;;;36733:26:0;:2;-1:-1:-1;;;;;36733:26:0;;;36691:68;:121;;;;;36802:9;-1:-1:-1;;;;;36788:24:0;:2;-1:-1:-1;;;;;36788:24:0;;;36691:121;36661:541;;;36919:9;36901:28;;;;:17;:28;;;;;;36965:12;-1:-1:-1;36863:245:0;;;;-1:-1:-1;;;36863:245:0;;10237:2:1;36863:245:0;;;10219:21:1;10276:2;10256:18;;;10249:30;10315:34;10295:18;;;10288:62;10386:34;10366:18;;;10359:62;-1:-1:-1;;;10437:19:1;;;10430:38;10485:19;;36863:245:0;10035:475:1;36863:245:0;37153:9;37135:28;;;;:17;:28;;;;;37166:12;37135:43;;36661:541;-1:-1:-1;;;;;37273:16:0;;;;;;:10;:16;;;;;;;;:44;;;;-1:-1:-1;;;;;;37294:23:0;;;;;;:19;:23;;;;;;;;37293:24;37273:44;37269:1025;;;37386:21;;37376:6;:31;;37342:171;;;;-1:-1:-1;;;37342:171:0;;10717:2:1;37342:171:0;;;10699:21:1;10756:2;10736:18;;;10729:30;10795:34;10775:18;;;10768:62;-1:-1:-1;;;10846:18:1;;;10839:52;10908:19;;37342:171:0;10515:418:1;37342:171:0;37596:20;;-1:-1:-1;;;;;14180:18:0;;14153:7;14180:18;;;;;;;;;;;37570:22;;:6;:22;:::i;:::-;:46;;37536:151;;;;-1:-1:-1;;;37536:151:0;;11140:2:1;37536:151:0;;;11122:21:1;11179:2;11159:18;;;11152:30;-1:-1:-1;;;11198:18:1;;;11191:49;11257:18;;37536:151:0;10938:343:1;37536:151:0;37269:1025;;;-1:-1:-1;;;;;37785:14:0;;;;;;:10;:14;;;;;;;;:44;;;;-1:-1:-1;;;;;;37804:25:0;;;;;;:19;:25;;;;;;;;37803:26;37785:44;37759:535;;;37916:21;;37906:6;:31;;37872:172;;;;-1:-1:-1;;;37872:172:0;;11488:2:1;37872:172:0;;;11470:21:1;11527:2;11507:18;;;11500:30;11566:34;11546:18;;;11539:62;11637:25;11617:18;;;11610:53;11680:19;;37872:172:0;11286:419:1;37759:535:0;-1:-1:-1;;;;;38075:23:0;;;;;;:19;:23;;;;;;;;38070:224;;38183:20;;-1:-1:-1;;;;;14180:18:0;;14153:7;14180:18;;;;;;;;;;;38157:22;;:6;:22;:::i;:::-;:46;;38123:151;;;;-1:-1:-1;;;38123:151:0;;11140:2:1;38123:151:0;;;11122:21:1;11179:2;11159:18;;;11152:30;-1:-1:-1;;;11198:18:1;;;11191:49;11257:18;;38123:151:0;10938:343:1;38123:151:0;38381:4;38332:28;14180:18;;;;;;;;;;;38439:20;;38415:44;;;;;;;38490:43;;-1:-1:-1;38514:19:0;;-1:-1:-1;;;38514:19:0;;;;38490:43;:76;;;;-1:-1:-1;38551:15:0;;-1:-1:-1;;;38551:15:0;;;;38550:16;38490:76;:110;;;;-1:-1:-1;;;;;;38584:16:0;;;;;;:10;:16;;;;;;;;38583:17;38490:110;:148;;;;-1:-1:-1;;;;;;38618:20:0;;;;;;:14;:20;;;;;;;;38617:21;38490:148;:184;;;;-1:-1:-1;;;;;;38656:18:0;;;;;;:14;:18;;;;;;;;38655:19;38490:184;38472:337;;;38701:15;:22;;-1:-1:-1;;;;38701:22:0;-1:-1:-1;;;38701:22:0;;;38740:17;:15;:17::i;:::-;38774:15;:23;;-1:-1:-1;;;;38774:23:0;;;38472:337;38837:15;;-1:-1:-1;;;;;38954:20:0;;38821:12;38954:20;;;:14;:20;;;;;;38837:15;-1:-1:-1;;;38837:15:0;;;;;38836:16;;38954:20;;:42;;-1:-1:-1;;;;;;38978:18:0;;;;;;:14;:18;;;;;;;;38954:42;38950:90;;;-1:-1:-1;39023:5:0;38950:90;39052:12;39157:7;39153:819;;;-1:-1:-1;;;;;39209:14:0;;;;;;:10;:14;;;;;;;;:39;;;;;39247:1;39227:17;;:21;39209:39;39205:620;;;39276:38;39310:3;39276:29;39287:17;;39276:6;:10;;:29;;;;:::i;:::-;:33;;:38::i;:::-;39269:45;;39380:17;;39364:12;;39357:4;:19;;;;:::i;:::-;39356:41;;;;:::i;:::-;39333:19;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;;39463:17:0;;39447:12;;39440:19;;:4;:19;:::i;:::-;39439:41;;;;:::i;:::-;39416:19;;:64;;;;;;;:::i;:::-;;;;-1:-1:-1;39205:620:0;;-1:-1:-1;39205:620:0;;-1:-1:-1;;;;;39542:16:0;;;;;;:10;:16;;;;;;;;:40;;;;;39581:1;39562:16;;:20;39542:40;39538:287;;;39610:37;39643:3;39610:28;39621:16;;39610:6;:10;;:28;;;;:::i;:37::-;39603:44;;39712:16;;39697:11;;39690:4;:18;;;;:::i;:::-;39689:39;;;;:::i;:::-;39666:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;39793:16:0;;39778:11;;39771:18;;:4;:18;:::i;:::-;39770:39;;;;:::i;:::-;39747:19;;:62;;;;;;;:::i;:::-;;;;-1:-1:-1;;39538:287:0;39845:8;;39841:89;;39874:40;39888:4;39902;39909;39874:13;:40::i;:::-;39946:14;39956:4;39946:14;;:::i;:::-;;;39153:819;39984:31;39998:4;40004:2;40008:6;39984:13;:31::i;:::-;35860:4163;;;;35749:4274;;;:::o;18982:1135::-;-1:-1:-1;;;;;19072:18:0;;19068:552;;19226:5;19210:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;19068:552:0;;-1:-1:-1;19068:552:0;;-1:-1:-1;;;;;19286:15:0;;19264:19;19286:15;;;;;;;;;;;19320:19;;;19316:117;;;19367:50;;-1:-1:-1;;;19367:50:0;;-1:-1:-1;;;;;6234:32:1;;19367:50:0;;;6216:51:1;6283:18;;;6276:34;;;6326:18;;;6319:34;;;6189:18;;19367:50:0;6014:345:1;19316:117:0;-1:-1:-1;;;;;19556:15:0;;:9;:15;;;;;;;;;;19574:19;;;;19556:37;;19068:552;-1:-1:-1;;;;;19636:16:0;;19632:435;;19802:12;:21;;;;;;;19632:435;;;-1:-1:-1;;;;;20018:13:0;;:9;:13;;;;;;;;;;:22;;;;;;19632:435;20099:2;-1:-1:-1;;;;;20084:25:0;20093:4;-1:-1:-1;;;;;20084:25:0;;20103:5;20084:25;;;;1711::1;;1699:2;1684:18;;1565:177;20084:25:0;;;;;;;;18982:1135;;;:::o;40634:992::-;40724:4;40680:23;14180:18;;;;;;;;;;;40680:50;;40741:25;40791:19;;40769;;:41;;;;:::i;:::-;40741:69;-1:-1:-1;40821:12:0;40850:20;;;:46;;-1:-1:-1;40874:22:0;;40850:46;40846:85;;;40913:7;;;40634:992::o;40846:85::-;40965:17;;40947:15;:35;40943:103;;;41017:17;;40999:35;;40943:103;41086:21;41120:51;41155:15;41120:34;:51::i;:::-;41184:18;41205:44;:21;41231:17;41205:25;:44::i;:::-;41184:65;;41262:21;41286:58;41326:17;41286:35;41301:19;;41286:10;:14;;:35;;;;:::i;:58::-;41379:1;41357:19;:23;;;41391:19;:23;;;41449:19;;41441:59;;41262:82;;-1:-1:-1;;;;;;41449:19:0;;41262:82;;41441:59;41379:1;41441:59;41262:82;41449:19;41441:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;41535:19:0;;41527:91;;41427:73;;-1:-1:-1;;;;;;41535:19:0;;41582:21;;41527:91;;;;41582:21;41535:19;41527:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;40634:992:0:o;3380:98::-;3438:7;3465:5;3469:1;3465;:5;:::i;:::-;3458:12;3380:98;-1:-1:-1;;;3380:98:0:o;3779:::-;3837:7;3864:5;3868:1;3864;:5;:::i;40031:595::-;40199:16;;;40213:1;40199:16;;;;;;;;40175:21;;40199:16;;;;;;;;;;-1:-1:-1;40199:16:0;40175:40;;40244:4;40226;40231:1;40226:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;40226:23:0;;;-1:-1:-1;;;;;40226:23:0;;;;;40270:11;-1:-1:-1;;;;;40270:16:0;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;40260:4;40265:1;40260:7;;;;;;;;:::i;:::-;;;;;;:28;-1:-1:-1;;;;;40260:28:0;;;-1:-1:-1;;;;;40260:28:0;;;;;40301:58;40318:4;40333:11;40347;40301:8;:58::i;:::-;40398:220;;-1:-1:-1;;;40398:220:0;;-1:-1:-1;;;;;40398:11:0;:62;;;;:220;;40475:11;;40501:1;;40545:4;;40572;;40592:15;;40398:220;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40104:522;40031:595;:::o;3023:98::-;3081:7;3108:5;3112:1;3108;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:160::-;632:20;;688:13;;681:21;671:32;;661:60;;717:1;714;707:12;732:180;788:6;841:2;829:9;820:7;816:23;812:32;809:52;;;857:1;854;847:12;809:52;880:26;896:9;880:26;:::i;917:131::-;-1:-1:-1;;;;;992:31:1;;982:42;;972:70;;1038:1;1035;1028:12;1053:315;1121:6;1129;1182:2;1170:9;1161:7;1157:23;1153:32;1150:52;;;1198:1;1195;1188:12;1150:52;1237:9;1224:23;1256:31;1281:5;1256:31;:::i;:::-;1306:5;1358:2;1343:18;;;;1330:32;;-1:-1:-1;;;1053:315:1:o;1747:::-;1812:6;1820;1873:2;1861:9;1852:7;1848:23;1844:32;1841:52;;;1889:1;1886;1879:12;1841:52;1928:9;1915:23;1947:31;1972:5;1947:31;:::i;:::-;1997:5;-1:-1:-1;2021:35:1;2052:2;2037:18;;2021:35;:::i;:::-;2011:45;;1747:315;;;;;:::o;2067:456::-;2144:6;2152;2160;2213:2;2201:9;2192:7;2188:23;2184:32;2181:52;;;2229:1;2226;2219:12;2181:52;2268:9;2255:23;2287:31;2312:5;2287:31;:::i;:::-;2337:5;-1:-1:-1;2394:2:1;2379:18;;2366:32;2407:33;2366:32;2407:33;:::i;:::-;2067:456;;2459:7;;-1:-1:-1;;;2513:2:1;2498:18;;;;2485:32;;2067:456::o;2925:247::-;2984:6;3037:2;3025:9;3016:7;3012:23;3008:32;3005:52;;;3053:1;3050;3043:12;3005:52;3092:9;3079:23;3111:31;3136:5;3111:31;:::i;3177:248::-;3245:6;3253;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;-1:-1:-1;;3345:23:1;;;3415:2;3400:18;;;3387:32;;-1:-1:-1;3177:248:1:o;3659:180::-;3718:6;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;-1:-1:-1;3810:23:1;;3659:180;-1:-1:-1;3659:180:1:o;3844:388::-;3912:6;3920;3973:2;3961:9;3952:7;3948:23;3944:32;3941:52;;;3989:1;3986;3979:12;3941:52;4028:9;4015:23;4047:31;4072:5;4047:31;:::i;:::-;4097:5;-1:-1:-1;4154:2:1;4139:18;;4126:32;4167:33;4126:32;4167:33;:::i;:::-;4219:7;4209:17;;;3844:388;;;;;:::o;4237:380::-;4316:1;4312:12;;;;4359;;;4380:61;;4434:4;4426:6;4422:17;4412:27;;4380:61;4487:2;4479:6;4476:14;4456:18;4453:38;4450:161;;4533:10;4528:3;4524:20;4521:1;4514:31;4568:4;4565:1;4558:15;4596:4;4593:1;4586:15;4450:161;;4237:380;;;:::o;4622:356::-;4824:2;4806:21;;;4843:18;;;4836:30;4902:34;4897:2;4882:18;;4875:62;4969:2;4954:18;;4622:356::o;4983:127::-;5044:10;5039:3;5035:20;5032:1;5025:31;5075:4;5072:1;5065:15;5099:4;5096:1;5089:15;5115:125;5180:9;;;5201:10;;;5198:36;;;5214:18;;:::i;6781:168::-;6854:9;;;6885;;6902:15;;;6896:22;;6882:37;6872:71;;6923:18;;:::i;6954:217::-;6994:1;7020;7010:132;;7064:10;7059:3;7055:20;7052:1;7045:31;7099:4;7096:1;7089:15;7127:4;7124:1;7117:15;7010:132;-1:-1:-1;7156:9:1;;6954:217::o;11710:128::-;11777:9;;;11798:11;;;11795:37;;;11812:18;;:::i;12185:127::-;12246:10;12241:3;12237:20;12234:1;12227:31;12277:4;12274:1;12267:15;12301:4;12298:1;12291:15;12317:251;12387:6;12440:2;12428:9;12419:7;12415:23;12411:32;12408:52;;;12456:1;12453;12446:12;12408:52;12488:9;12482:16;12507:31;12532:5;12507:31;:::i;12573:980::-;12835:4;12883:3;12872:9;12868:19;12914:6;12903:9;12896:25;12940:2;12978:6;12973:2;12962:9;12958:18;12951:34;13021:3;13016:2;13005:9;13001:18;12994:31;13045:6;13080;13074:13;13111:6;13103;13096:22;13149:3;13138:9;13134:19;13127:26;;13188:2;13180:6;13176:15;13162:29;;13209:1;13219:195;13233:6;13230:1;13227:13;13219:195;;;13298:13;;-1:-1:-1;;;;;13294:39:1;13282:52;;13389:15;;;;13354:12;;;;13330:1;13248:9;13219:195;;;-1:-1:-1;;;;;;;13470:32:1;;;;13465:2;13450:18;;13443:60;-1:-1:-1;;;13534:3:1;13519:19;13512:35;13431:3;12573:980;-1:-1:-1;;;12573:980:1:o
Swarm Source
ipfs://24acba70e332035c8614f9ca46ae5dbd370a75c1bc58d49d6238cb2faa81a82d
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.