ERC-20
Overview
Max Total Supply
100,000 SOS
Holders
123
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
59,020.084005701181433107 SOSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
SonicOSToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-02-20 */ // File: interfaces/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: interfaces/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: contracts/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: interfaces/ISonicOSPair.sol pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } // File: interfaces/ISonicOSRouter.sol pragma solidity >=0.6.2; interface ISonicOSRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, uint deadline ) external returns (uint amountETH); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function launch( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, uint8 buyLpFee, uint8 sellLpFee, uint8 buyProtocolFee, uint8 sellProtocolFee, address protocolAddress ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } // File: libraries/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data ) internal returns (bytes memory) { return functionCallWithValue( target, data, 0, "Address: low-level call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data ) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data ) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget( target, success, returndata, errorMessage ); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert( bytes memory returndata, string memory errorMessage ) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: interfaces/IERC20Permit.sol pragma solidity ^0.8.0; interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: libraries/SafeERC20.sol pragma solidity ^0.8.0; library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } } // File: libraries/SafeMath.sol pragma solidity >=0.4.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x < y ? x : y; } // babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method) function sqrt(uint256 y) internal pure returns (uint256 z) { if (y > 3) { z = y; uint256 x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } } // File: contracts/SonicOS.sol pragma solidity ^0.8.0; contract SonicOSToken is ERC20 { using SafeMath for uint256; uint constant _initial_supply = 100000 * (10 ** 18); address public owner; uint256 public blockLaunch; address public lpPair; uint256 fees = 2; uint256 public maxWalletPercent = 100; uint256 public maxWallet; uint256 private constant swapTokensAtAmountPercent = 50; uint256 private constant maxSwapableTokensPercent = 100; uint256 swapTokensAtAmount; uint256 _maxSwapableTokens; bool public isTradingLive = false; bool public swapEnabled = false; bool public limitsInEffect = true; bool private swapping; mapping(address => bool) public _isExcludedFromFees; mapping(address => bool) public _isExcludedmaxwallet; mapping(address => bool) public automatedMarketMakerPairs; ISonicOSRouter public _router; constructor(address _routerAddress) ERC20("SonicOS", "SOS") { _mint(msg.sender, _initial_supply); owner = msg.sender; _router = ISonicOSRouter(_routerAddress); _isExcludedFromFees[owner] = true; _isExcludedFromFees[address(this)] = true; _isExcludedmaxwallet[owner] = true; _isExcludedmaxwallet[address(this)] = true; maxWallet = (_initial_supply * maxWalletPercent) / 100; swapTokensAtAmount = (_initial_supply * swapTokensAtAmountPercent) / 10_000; _maxSwapableTokens = (_initial_supply * maxSwapableTokensPercent) / 10_000; } function launchToken(address _lp) public { require(msg.sender == owner); blockLaunch = block.number; lpPair = _lp; automatedMarketMakerPairs[lpPair] = true; isTradingLive = true; swapEnabled = true; } function updateSwapAmount(uint256 _newSwapAmount) public { require(msg.sender == owner); swapTokensAtAmount = _newSwapAmount; } function _transfer(address from, address to, uint256 amount) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if (from != owner && to != owner && to != address(0) && to != address(0xdead) && !swapping) { if (!isTradingLive) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } // BUY if (automatedMarketMakerPairs[from] && !_isExcludedmaxwallet[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } // SELL else if (automatedMarketMakerPairs[to] && !_isExcludedmaxwallet[from]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(min(contractTokenBalance, _maxSwapableTokens)); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { fees = amount * getFees() / 100; if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function min(uint256 a, uint256 b) private pure returns (uint256) { return (a > b) ? b : a; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _router.WETH(); _approve(address(this), address(_router), tokenAmount); _router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, owner, block.timestamp ); } function swapBack(uint256 amount) private { bool success; if (amount == 0) { return; } uint256 amountToSwapForETH = amount; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance; (success, ) = address(owner).call{ value: ethBalance }(""); } function updateRouter(address _new) public { require(msg.sender == owner); _router = ISonicOSRouter(_new); } function updatePair(address _new) public { require(msg.sender == owner); lpPair = _new; } function excludeFromFees(address _address, bool _bool) public { require(msg.sender == owner); _isExcludedFromFees[_address] = _bool; } function removeMaxWallet() public { require(msg.sender == owner); limitsInEffect = false; } function getFees() public view returns(uint256) { uint256 taxFees; if(block.number <= blockLaunch + 100) { taxFees = 30; } else if(block.number <= blockLaunch + 400) { taxFees = 20; } else { taxFees = 2; } return taxFees; } function updateSwapEnabled(bool _isEnable) external { require(msg.sender == owner); swapEnabled = _isEnable; } function manualSwap(uint256 amount) external { require(msg.sender == owner); require(amount <= balanceOf(address(this)) && amount > 0, "Wrong amount"); swapBack(amount); } function recoverTokensFromContract(address _tokenAddress, uint256 _amount) external { require(msg.sender == owner); bool succ = ERC20(_tokenAddress).transfer(owner, _amount); require(succ, "Transfer failed"); } function excluded(address[] memory _address) public { require(msg.sender == owner); for (uint256 i = 0; i < _address.length; i++) { _isExcludedFromFees[_address[i]] = true; } } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_routerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedmaxwallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_router","outputs":[{"internalType":"contract ISonicOSRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"excluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isTradingLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_lp","type":"address"}],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"recoverTokensFromContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"updatePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_new","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapAmount","type":"uint256"}],"name":"updateSwapAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnable","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260026008556064600955600d805462ffffff1916620100001790553480156200002c57600080fd5b5060405162001f6338038062001f638339810160408190526200004f916200034d565b60405180604001604052806007815260200166536f6e69634f5360c81b81525060405180604001604052806003815260200162534f5360e81b8152508160039080519060200190620000a3929190620002a7565b508051620000b9906004906020840190620002a7565b505050620000d83369152d02c7e14af6800000620001e060201b60201c565b600580546001600160a01b03199081163317808355601180546001600160a01b038681169190941617905581166000908152600e60209081526040808320805460ff19908116600190811790925530808652838620805483168417905596549095168452600f909252808320805485168317905593825292902080549091169091179055600954606490620001789069152d02c7e14af6800000620003f9565b620001849190620003d8565b600a55612710620001a1603269152d02c7e14af6800000620003f9565b620001ad9190620003d8565b600b55612710620001ca606469152d02c7e14af6800000620003f9565b620001d69190620003d8565b600c55506200046e565b6001600160a01b038216620002125760405162461bcd60e51b815260040162000209906200037d565b60405180910390fd5b6200022060008383620002a2565b8060026000828254620002349190620003bd565b90915550506001600160a01b038216600081815260208190526040808220805485019055517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9062000288908590620003b4565b60405180910390a36200029e60008383620002a2565b5050565b505050565b828054620002b5906200041b565b90600052602060002090601f016020900481019282620002d9576000855562000324565b82601f10620002f457805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032457825182559160200191906001019062000307565b506200033292915062000336565b5090565b5b8082111562000332576000815560010162000337565b6000602082840312156200035f578081fd5b81516001600160a01b038116811462000376578182fd5b9392505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620003d357620003d362000458565b500190565b600082620003f457634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161562000416576200041662000458565b500290565b6002810460018216806200043057607f821691505b602082108114156200045257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611ae5806200047e6000396000f3fe6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611646565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114cf565b610682565b60405161022b919061163b565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611915565b34801561028f57600080fd5b506102a361029e3660046113f2565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611462565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198e565b34801561030857600080fd5b506102546103173660046114cf565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114fa565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160e565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f2565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f2565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f2565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115bb565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114cf565b610905565b34801561048857600080fd5b506102546104973660046114cf565b610956565b3480156104a857600080fd5b506102a36104b73660046115f3565b61096e565b3480156104c857600080fd5b506102546104d73660046113f2565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f3565b61099f565b34801561050857600080fd5b506102a36105173660046114a2565b6109f6565b34801561052857600080fd5b506102a36105373660046113f2565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab7565b34801561057257600080fd5b5061027661058136600461142a565b610adc565b34801561059257600080fd5b506102546105a13660046113f2565b610b07565b3480156105b257600080fd5b506102a36105c13660046114cf565b610b1c565b3480156105d257600080fd5b50610366610bde565b3480156105e757600080fd5b50610276610bed565b6060600380546105ff90611a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a0a565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf3565b905061069a818585610bf7565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf3565b90506106fb858285610cab565b610706858585610cf5565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf3565b905061069a81858561073c8589610adc565b610746919061199c565b610bf7565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a45565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a0a565b600080610910610bf3565b9050600061091e8286610adc565b9050838110156109495760405162461bcd60e51b8152600401610940906118aa565b60405180910390fd5b6107068286868403610bf7565b600080610961610bf3565b905061069a818585610cf5565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ef565b6109f3816110d4565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546064610a83919061199c565b4311610a915750601e610ab2565b600654610aa09061019061199c565b4311610aae57506014610ab2565b5060025b905090565b6005546001600160a01b03163314610ace57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3357600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b689216908690600401611622565b602060405180830381600087803b158015610b8257600080fd5b505af1158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba91906115d7565b905080610bd95760405162461bcd60e51b81526004016109409061174e565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1d5760405162461bcd60e51b815260040161094090611839565b6001600160a01b038216610c435760405162461bcd60e51b81526004016109409061170c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9e908590611915565b60405180910390a3505050565b6000610cb78484610adc565b90506000198114610cef5781811015610ce25760405162461bcd60e51b815260040161094090611777565b610cef8484848403610bf7565b50505050565b6001600160a01b038316610d1b5760405162461bcd60e51b8152600401610940906117f4565b6001600160a01b038216610d415760405162461bcd60e51b815260040161094090611699565b80610d5757610d5283836000611145565b610bd9565b600d5462010000900460ff1615610f38576005546001600160a01b03848116911614801590610d9457506005546001600160a01b03838116911614155b8015610da857506001600160a01b03821615155b8015610dbf57506001600160a01b03821661dead14155b8015610dd55750600d546301000000900460ff16155b15610f3857600d5460ff16610e3f576001600160a01b0383166000908152600e602052604090205460ff1680610e2357506001600160a01b0382166000908152600e602052604090205460ff165b610e3f5760405162461bcd60e51b8152600401610940906116dc565b6001600160a01b03831660009081526010602052604090205460ff168015610e8057506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebe57600a54610e918361080e565b610e9b908361199c565b1115610eb95760405162461bcd60e51b81526004016109409061187d565b610f38565b6001600160a01b03821660009081526010602052604090205460ff168015610eff57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3857600a54610f108361080e565b610f1a908361199c565b1115610f385760405162461bcd60e51b81526004016109409061187d565b6000610f433061080e565b600b5490915081108015908190610f615750600d54610100900460ff165b8015610f775750600d546301000000900460ff16155b8015610f9c57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc157506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe657506001600160a01b0384166000908152600e602052604090205460ff16155b1561102357600d805463ff00000019166301000000179055600c5461101590611010908490611246565b6110d4565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107157506001600160a01b0385166000908152600e602052604090205460ff165b1561107a575060005b600081156110c057606461108c610a71565b61109690876119d4565b6110a091906119b4565b905080156110b3576110b3873083611145565b6110bd81866119f3565b94505b6110cb878787611145565b50505050505050565b6000816110e157506109f3565b816110eb8161125e565b60055460405147916001600160a01b03169082906111089061160b565b60006040518083038185875af1925050503d80600081146110cb576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b6001600160a01b03831661116b5760405162461bcd60e51b8152600401610940906117f4565b6001600160a01b0382166111915760405162461bcd60e51b815260040161094090611699565b61119c838383610bd9565b6001600160a01b038316600090815260208190526040902054818110156111d55760405162461bcd60e51b8152600401610940906117ae565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611233908690611915565b60405180910390a3610cef848484610bd9565b60008183116112555782611257565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f557600080fd5b505afa158015611309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132d919061140e565b8160018151811061134e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113749130911684610bf7565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b19287926000928892911690429060040161191e565b600060405180830381600087803b1580156113cb57600080fd5b505af11580156113df573d6000803e3d6000fd5b505050505050565b803561082881611a8c565b600060208284031215611403578081fd5b813561125781611a8c565b60006020828403121561141f578081fd5b815161125781611a8c565b6000806040838503121561143c578081fd5b823561144781611a8c565b9150602083013561145781611a8c565b809150509250929050565b600080600060608486031215611476578081fd5b833561148181611a8c565b9250602084013561149181611a8c565b929592945050506040919091013590565b600080604083850312156114b4578182fd5b82356114bf81611a8c565b9150602083013561145781611aa1565b600080604083850312156114e1578182fd5b82356114ec81611a8c565b946020939093013593505050565b6000602080838503121561150c578182fd5b823567ffffffffffffffff80821115611523578384fd5b818501915085601f830112611536578384fd5b81358181111561154857611548611a76565b8381026040518582820101818110858211171561156757611567611a76565b604052828152858101935084860182860187018a1015611585578788fd5b8795505b838610156115ae5761159a816113e7565b855260019590950194938601938601611589565b5098975050505050505050565b6000602082840312156115cc578081fd5b813561125781611aa1565b6000602082840312156115e8578081fd5b815161125781611aa1565b600060208284031215611604578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167257858101830151858201604001528201611656565b818111156116835783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196d5784516001600160a01b031683529383019391830191600101611948565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119af576119af611a60565b500190565b6000826119cf57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ee576119ee611a60565b500290565b600082821015611a0557611a05611a60565b500390565b600281046001821680611a1e57607f821691505b60208210811415611a3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5957611a59611a60565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea26469706673582212209fa61716d34d5bf256336fe2902de5948695498a2df52cff36e0e36cc156126664736f6c634300080000330000000000000000000000002f1d2f650c8f6415a58279328e2a69ca293c0e8c
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638da5cb5b1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610566578063e0bf7fd114610586578063e6be4a72146105a6578063edae876f146105c6578063f8b45b05146105db57610204565b8063c0246668146104fc578063c851cc321461051c578063db8d55f11461053c578063dc07b6171461055157610204565b8063a9059cbb116100dc578063a9059cbb1461047c578063ab3b55451461049c578063b62496f5146104bc578063b70143c9146104dc57610204565b80638da5cb5b14610412578063924de9b71461042757806395d89b4114610447578063a457c2d71461045c57610204565b80633d9a3d19116101905780636ddd17131161015f5780636ddd17131461038857806370a082311461039d5780637a3c8640146103bd5780637f5fffd8146103dd5780638d0fdc6d146103f257610204565b80633d9a3d191461031c5780634484961814610331578063452ed4f1146103515780634a62bb651461037357610204565b806323b872dd116101cc57806323b872dd146102a55780632ded0b04146102c5578063313ce567146102da57806339509351146102fc57610204565b806306fdde0314610209578063095ea7b31461023457806318160ddd146102615780631b56bbf91461028357610204565b3661020457005b600080fd5b34801561021557600080fd5b5061021e6105f0565b60405161022b9190611646565b60405180910390f35b34801561024057600080fd5b5061025461024f3660046114cf565b610682565b60405161022b919061163b565b34801561026d57600080fd5b506102766106a4565b60405161022b9190611915565b34801561028f57600080fd5b506102a361029e3660046113f2565b6106aa565b005b3480156102b157600080fd5b506102546102c0366004611462565b6106e3565b3480156102d157600080fd5b50610254610711565b3480156102e657600080fd5b506102ef61071a565b60405161022b919061198e565b34801561030857600080fd5b506102546103173660046114cf565b61071f565b34801561032857600080fd5b5061027661074b565b34801561033d57600080fd5b506102a361034c3660046114fa565b610751565b34801561035d57600080fd5b506103666107e2565b60405161022b919061160e565b34801561037f57600080fd5b506102546107f1565b34801561039457600080fd5b50610254610800565b3480156103a957600080fd5b506102766103b83660046113f2565b61080e565b3480156103c957600080fd5b506102a36103d83660046113f2565b61082d565b3480156103e957600080fd5b5061027661089b565b3480156103fe57600080fd5b5061025461040d3660046113f2565b6108a1565b34801561041e57600080fd5b506103666108b6565b34801561043357600080fd5b506102a36104423660046115bb565b6108c5565b34801561045357600080fd5b5061021e6108f6565b34801561046857600080fd5b506102546104773660046114cf565b610905565b34801561048857600080fd5b506102546104973660046114cf565b610956565b3480156104a857600080fd5b506102a36104b73660046115f3565b61096e565b3480156104c857600080fd5b506102546104d73660046113f2565b61098a565b3480156104e857600080fd5b506102a36104f73660046115f3565b61099f565b34801561050857600080fd5b506102a36105173660046114a2565b6109f6565b34801561052857600080fd5b506102a36105373660046113f2565b610a38565b34801561054857600080fd5b50610276610a71565b34801561055d57600080fd5b506102a3610ab7565b34801561057257600080fd5b5061027661058136600461142a565b610adc565b34801561059257600080fd5b506102546105a13660046113f2565b610b07565b3480156105b257600080fd5b506102a36105c13660046114cf565b610b1c565b3480156105d257600080fd5b50610366610bde565b3480156105e757600080fd5b50610276610bed565b6060600380546105ff90611a0a565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611a0a565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b60008061068d610bf3565b905061069a818585610bf7565b5060019392505050565b60025490565b6005546001600160a01b031633146106c157600080fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6000806106ee610bf3565b90506106fb858285610cab565b610706858585610cf5565b506001949350505050565b600d5460ff1681565b601290565b60008061072a610bf3565b905061069a81858561073c8589610adc565b610746919061199c565b610bf7565b60095481565b6005546001600160a01b0316331461076857600080fd5b60005b81518110156107de576001600e600084848151811061079a57634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806107d681611a45565b91505061076b565b5050565b6007546001600160a01b031681565b600d5462010000900460ff1681565b600d54610100900460ff1681565b6001600160a01b0381166000908152602081905260409020545b919050565b6005546001600160a01b0316331461084457600080fd5b43600655600780546001600160a01b0319166001600160a01b039283161790819055166000908152601060205260409020805460ff199081166001908117909255600d8054610100921690921761ff001916179055565b60065481565b600f6020526000908152604090205460ff1681565b6005546001600160a01b031681565b6005546001600160a01b031633146108dc57600080fd5b600d80549115156101000261ff0019909216919091179055565b6060600480546105ff90611a0a565b600080610910610bf3565b9050600061091e8286610adc565b9050838110156109495760405162461bcd60e51b8152600401610940906118aa565b60405180910390fd5b6107068286868403610bf7565b600080610961610bf3565b905061069a818585610cf5565b6005546001600160a01b0316331461098557600080fd5b600b55565b60106020526000908152604090205460ff1681565b6005546001600160a01b031633146109b657600080fd5b6109bf3061080e565b81111580156109ce5750600081115b6109ea5760405162461bcd60e51b8152600401610940906118ef565b6109f3816110d4565b50565b6005546001600160a01b03163314610a0d57600080fd5b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a4f57600080fd5b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6000806006546064610a83919061199c565b4311610a915750601e610ab2565b600654610aa09061019061199c565b4311610aae57506014610ab2565b5060025b905090565b6005546001600160a01b03163314610ace57600080fd5b600d805462ff000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600e6020526000908152604090205460ff1681565b6005546001600160a01b03163314610b3357600080fd5b60055460405163a9059cbb60e01b81526000916001600160a01b038086169263a9059cbb92610b689216908690600401611622565b602060405180830381600087803b158015610b8257600080fd5b505af1158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba91906115d7565b905080610bd95760405162461bcd60e51b81526004016109409061174e565b505050565b6011546001600160a01b031681565b600a5481565b3390565b6001600160a01b038316610c1d5760405162461bcd60e51b815260040161094090611839565b6001600160a01b038216610c435760405162461bcd60e51b81526004016109409061170c565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610c9e908590611915565b60405180910390a3505050565b6000610cb78484610adc565b90506000198114610cef5781811015610ce25760405162461bcd60e51b815260040161094090611777565b610cef8484848403610bf7565b50505050565b6001600160a01b038316610d1b5760405162461bcd60e51b8152600401610940906117f4565b6001600160a01b038216610d415760405162461bcd60e51b815260040161094090611699565b80610d5757610d5283836000611145565b610bd9565b600d5462010000900460ff1615610f38576005546001600160a01b03848116911614801590610d9457506005546001600160a01b03838116911614155b8015610da857506001600160a01b03821615155b8015610dbf57506001600160a01b03821661dead14155b8015610dd55750600d546301000000900460ff16155b15610f3857600d5460ff16610e3f576001600160a01b0383166000908152600e602052604090205460ff1680610e2357506001600160a01b0382166000908152600e602052604090205460ff165b610e3f5760405162461bcd60e51b8152600401610940906116dc565b6001600160a01b03831660009081526010602052604090205460ff168015610e8057506001600160a01b0382166000908152600f602052604090205460ff16155b15610ebe57600a54610e918361080e565b610e9b908361199c565b1115610eb95760405162461bcd60e51b81526004016109409061187d565b610f38565b6001600160a01b03821660009081526010602052604090205460ff168015610eff57506001600160a01b0383166000908152600f602052604090205460ff16155b15610f3857600a54610f108361080e565b610f1a908361199c565b1115610f385760405162461bcd60e51b81526004016109409061187d565b6000610f433061080e565b600b5490915081108015908190610f615750600d54610100900460ff165b8015610f775750600d546301000000900460ff16155b8015610f9c57506001600160a01b03851660009081526010602052604090205460ff16155b8015610fc157506001600160a01b0385166000908152600e602052604090205460ff16155b8015610fe657506001600160a01b0384166000908152600e602052604090205460ff16155b1561102357600d805463ff00000019166301000000179055600c5461101590611010908490611246565b6110d4565b600d805463ff000000191690555b600d546001600160a01b0386166000908152600e602052604090205460ff630100000090920482161591168061107157506001600160a01b0385166000908152600e602052604090205460ff165b1561107a575060005b600081156110c057606461108c610a71565b61109690876119d4565b6110a091906119b4565b905080156110b3576110b3873083611145565b6110bd81866119f3565b94505b6110cb878787611145565b50505050505050565b6000816110e157506109f3565b816110eb8161125e565b60055460405147916001600160a01b03169082906111089061160b565b60006040518083038185875af1925050503d80600081146110cb576040519150601f19603f3d011682016040523d82523d6000602084013e6110cb565b6001600160a01b03831661116b5760405162461bcd60e51b8152600401610940906117f4565b6001600160a01b0382166111915760405162461bcd60e51b815260040161094090611699565b61119c838383610bd9565b6001600160a01b038316600090815260208190526040902054818110156111d55760405162461bcd60e51b8152600401610940906117ae565b6001600160a01b0380851660008181526020819052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611233908690611915565b60405180910390a3610cef848484610bd9565b60008183116112555782611257565b815b9392505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106112a157634e487b7160e01b600052603260045260246000fd5b6001600160a01b03928316602091820292909201810191909152601154604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b1580156112f557600080fd5b505afa158015611309573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061132d919061140e565b8160018151811061134e57634e487b7160e01b600052603260045260246000fd5b6001600160a01b0392831660209182029290920101526011546113749130911684610bf7565b60115460055460405163791ac94760e01b81526001600160a01b039283169263791ac947926113b19287926000928892911690429060040161191e565b600060405180830381600087803b1580156113cb57600080fd5b505af11580156113df573d6000803e3d6000fd5b505050505050565b803561082881611a8c565b600060208284031215611403578081fd5b813561125781611a8c565b60006020828403121561141f578081fd5b815161125781611a8c565b6000806040838503121561143c578081fd5b823561144781611a8c565b9150602083013561145781611a8c565b809150509250929050565b600080600060608486031215611476578081fd5b833561148181611a8c565b9250602084013561149181611a8c565b929592945050506040919091013590565b600080604083850312156114b4578182fd5b82356114bf81611a8c565b9150602083013561145781611aa1565b600080604083850312156114e1578182fd5b82356114ec81611a8c565b946020939093013593505050565b6000602080838503121561150c578182fd5b823567ffffffffffffffff80821115611523578384fd5b818501915085601f830112611536578384fd5b81358181111561154857611548611a76565b8381026040518582820101818110858211171561156757611567611a76565b604052828152858101935084860182860187018a1015611585578788fd5b8795505b838610156115ae5761159a816113e7565b855260019590950194938601938601611589565b5098975050505050505050565b6000602082840312156115cc578081fd5b813561125781611aa1565b6000602082840312156115e8578081fd5b815161125781611aa1565b600060208284031215611604578081fd5b5035919050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602080835283518082850152825b8181101561167257858101830151858201604001528201611656565b818111156116835783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6020808252601690820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604082015260600190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e151c985b9cd9995c8819985a5b1959608a1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526013908201527213585e081dd85b1b195d08195e18d959591959606a1b604082015260600190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252600c908201526b15dc9bdb99c8185b5bdd5b9d60a21b604082015260600190565b90815260200190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b8181101561196d5784516001600160a01b031683529383019391830191600101611948565b50506001600160a01b03969096166060850152505050608001529392505050565b60ff91909116815260200190565b600082198211156119af576119af611a60565b500190565b6000826119cf57634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156119ee576119ee611a60565b500290565b600082821015611a0557611a05611a60565b500390565b600281046001821680611a1e57607f821691505b60208210811415611a3f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a5957611a59611a60565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146109f357600080fd5b80151581146109f357600080fdfea26469706673582212209fa61716d34d5bf256336fe2902de5948695498a2df52cff36e0e36cc156126664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002f1d2f650c8f6415a58279328e2a69ca293c0e8c
-----Decoded View---------------
Arg [0] : _routerAddress (address): 0x2F1D2F650c8F6415a58279328e2A69Ca293C0E8C
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002f1d2f650c8f6415a58279328e2a69ca293c0e8c
Deployed Bytecode Sourcemap
49369:6482:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8573:201;;;;;;;;;;-1:-1:-1;8573:201:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7342:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54255:112::-;;;;;;;;;;-1:-1:-1;54255:112:0;;;;;:::i;:::-;;:::i;:::-;;9354:261;;;;;;;;;;-1:-1:-1;9354:261:0;;;;;:::i;:::-;;:::i;49879:33::-;;;;;;;;;;;;;:::i;7184:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10024:238::-;;;;;;;;;;-1:-1:-1;10024:238:0;;;;;:::i;:::-;;:::i;49612:37::-;;;;;;;;;;;;;:::i;55590:221::-;;;;;;;;;;-1:-1:-1;55590:221:0;;;;;:::i;:::-;;:::i;49559:21::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49957:33::-;;;;;;;;;;;;;:::i;49919:31::-;;;;;;;;;;;;;:::i;7513:127::-;;;;;;;;;;-1:-1:-1;7513:127:0;;;;;:::i;:::-;;:::i;50889:271::-;;;;;;;;;;-1:-1:-1;50889:271:0;;;;;:::i;:::-;;:::i;49526:26::-;;;;;;;;;;;;;:::i;50087:52::-;;;;;;;;;;-1:-1:-1;50087:52:0;;;;;:::i;:::-;;:::i;49499:20::-;;;;;;;;;;;;;:::i;54991:133::-;;;;;;;;;;-1:-1:-1;54991:133:0;;;;;:::i;:::-;;:::i;6432:104::-;;;;;;;;;;;;;:::i;10765:436::-;;;;;;;;;;-1:-1:-1;10765:436:0;;;;;:::i;:::-;;:::i;7846:193::-;;;;;;;;;;-1:-1:-1;7846:193:0;;;;;:::i;:::-;;:::i;51168:154::-;;;;;;;;;;-1:-1:-1;51168:154:0;;;;;:::i;:::-;;:::i;50146:57::-;;;;;;;;;;-1:-1:-1;50146:57:0;;;;;:::i;:::-;;:::i;55133:203::-;;;;;;;;;;-1:-1:-1;55133:203:0;;;;;:::i;:::-;;:::i;54375:157::-;;;;;;;;;;-1:-1:-1;54375:157:0;;;;;:::i;:::-;;:::i;54116:131::-;;;;;;;;;;-1:-1:-1;54116:131:0;;;;;:::i;:::-;;:::i;54662:321::-;;;;;;;;;;;;;:::i;54540:114::-;;;;;;;;;;;;;:::i;8102:151::-;;;;;;;;;;-1:-1:-1;8102:151:0;;;;;:::i;:::-;;:::i;50029:51::-;;;;;;;;;;-1:-1:-1;50029:51:0;;;;;:::i;:::-;;:::i;55344:240::-;;;;;;;;;;-1:-1:-1;55344:240:0;;;;;:::i;:::-;;:::i;50212:29::-;;;;;;;;;;;;;:::i;49656:24::-;;;;;;;;;;;;;:::i;6213:100::-;6267:13;6300:5;6293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6213:100;:::o;8573:201::-;8656:4;8673:13;8689:12;:10;:12::i;:::-;8673:28;;8712:32;8721:5;8728:7;8737:6;8712:8;:32::i;:::-;-1:-1:-1;8762:4:0;;8573:201;-1:-1:-1;;;8573:201:0:o;7342:108::-;7430:12;;7342:108;:::o;54255:112::-;54329:5;;-1:-1:-1;;;;;54329:5:0;54315:10;:19;54307:28;;;;;;54346:6;:13;;-1:-1:-1;;;;;;54346:13:0;-1:-1:-1;;;;;54346:13:0;;;;;;;;;;54255:112::o;9354:261::-;9451:4;9468:15;9486:12;:10;:12::i;:::-;9468:30;;9509:38;9525:4;9531:7;9540:6;9509:15;:38::i;:::-;9558:27;9568:4;9574:2;9578:6;9558:9;:27::i;:::-;-1:-1:-1;9603:4:0;;9354:261;-1:-1:-1;;;;9354:261:0:o;49879:33::-;;;;;;:::o;7184:93::-;7267:2;7184:93;:::o;10024:238::-;10112:4;10129:13;10145:12;:10;:12::i;:::-;10129:28;;10168:64;10177:5;10184:7;10221:10;10193:25;10203:5;10210:7;10193:9;:25::i;:::-;:38;;;;:::i;:::-;10168:8;:64::i;49612:37::-;;;;:::o;55590:221::-;55675:5;;-1:-1:-1;;;;;55675:5:0;55661:10;:19;55653:28;;;;;;55697:9;55692:112;55716:8;:15;55712:1;:19;55692:112;;;55788:4;55753:19;:32;55773:8;55782:1;55773:11;;;;;;-1:-1:-1;;;55773:11:0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55753:32:0;;;;;;;;;;;-1:-1:-1;55753:32:0;:39;;-1:-1:-1;;55753:39:0;;;;;;;;;;55733:3;;;;:::i;:::-;;;;55692:112;;;;55590:221;:::o;49559:21::-;;;-1:-1:-1;;;;;49559:21:0;;:::o;49957:33::-;;;;;;;;;:::o;49919:31::-;;;;;;;;;:::o;7513:127::-;-1:-1:-1;;;;;7614:18:0;;7587:7;7614:18;;;;;;;;;;;7513:127;;;;:::o;50889:271::-;50965:5;;-1:-1:-1;;;;;50965:5:0;50951:10;:19;50943:28;;;;;;50998:12;50984:11;:26;51023:6;:12;;-1:-1:-1;;;;;;51023:12:0;-1:-1:-1;;;;;51023:12:0;;;;;;;;51074:6;-1:-1:-1;51048:33:0;;;:25;:33;;;;;:40;;-1:-1:-1;;51048:40:0;;;-1:-1:-1;51048:40:0;;;;;;51101:13;:20;;51023:12;51101:20;;;;;-1:-1:-1;;51134:18:0;;;;50889:271::o;49526:26::-;;;;:::o;50087:52::-;;;;;;;;;;;;;;;:::o;49499:20::-;;;-1:-1:-1;;;;;49499:20:0;;:::o;54991:133::-;55076:5;;-1:-1:-1;;;;;55076:5:0;55062:10;:19;55054:28;;;;;;55093:11;:23;;;;;;;-1:-1:-1;;55093:23:0;;;;;;;;;54991:133::o;6432:104::-;6488:13;6521:7;6514:14;;;;;:::i;10765:436::-;10858:4;10875:13;10891:12;:10;:12::i;:::-;10875:28;;10914:24;10941:25;10951:5;10958:7;10941:9;:25::i;:::-;10914:52;;11005:15;10985:16;:35;;10977:85;;;;-1:-1:-1;;;10977:85:0;;;;;;;:::i;:::-;;;;;;;;;11098:60;11107:5;11114:7;11142:15;11123:16;:34;11098:8;:60::i;7846:193::-;7925:4;7942:13;7958:12;:10;:12::i;:::-;7942:28;;7981;7991:5;7998:2;8002:6;7981:9;:28::i;51168:154::-;51260:5;;-1:-1:-1;;;;;51260:5:0;51246:10;:19;51238:28;;;;;;51279:18;:35;51168:154::o;50146:57::-;;;;;;;;;;;;;;;:::o;55133:203::-;55211:5;;-1:-1:-1;;;;;55211:5:0;55197:10;:19;55189:28;;;;;;55246:24;55264:4;55246:9;:24::i;:::-;55236:6;:34;;:48;;;;;55283:1;55274:6;:10;55236:48;55228:73;;;;-1:-1:-1;;;55228:73:0;;;;;;;:::i;:::-;55312:16;55321:6;55312:8;:16::i;:::-;55133:203;:::o;54375:157::-;54470:5;;-1:-1:-1;;;;;54470:5:0;54456:10;:19;54448:28;;;;;;-1:-1:-1;;;;;54487:29:0;;;;;;;;:19;:29;;;;;:37;;-1:-1:-1;;54487:37:0;;;;;;;;;;54375:157::o;54116:131::-;54192:5;;-1:-1:-1;;;;;54192:5:0;54178:10;:19;54170:28;;;;;;54209:7;:30;;-1:-1:-1;;;;;;54209:30:0;-1:-1:-1;;;;;54209:30:0;;;;;;;;;;54116:131::o;54662:321::-;54701:7;54721:15;54766:11;;54780:3;54766:17;;;;:::i;:::-;54750:12;:33;54747:204;;-1:-1:-1;54810:2:0;54747:204;;;54849:11;;:17;;54863:3;54849:17;:::i;:::-;54833:12;:33;54830:121;;-1:-1:-1;54893:2:0;54830:121;;;-1:-1:-1;54938:1:0;54830:121;54968:7;-1:-1:-1;54662:321:0;:::o;54540:114::-;54607:5;;-1:-1:-1;;;;;54607:5:0;54593:10;:19;54585:28;;;;;;54624:14;:22;;-1:-1:-1;;54624:22:0;;;54540:114::o;8102:151::-;-1:-1:-1;;;;;8218:18:0;;;8191:7;8218:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8102:151::o;50029:51::-;;;;;;;;;;;;;;;:::o;55344:240::-;55461:5;;-1:-1:-1;;;;;55461:5:0;55447:10;:19;55439:28;;;;;;55520:5;;55490:45;;-1:-1:-1;;;55490:45:0;;55478:9;;-1:-1:-1;;;;;55490:29:0;;;;;;:45;;55520:5;;55527:7;;55490:45;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55478:57;;55554:4;55546:32;;;;-1:-1:-1;;;55546:32:0;;;;;;;:::i;:::-;55344:240;;;:::o;50212:29::-;;;-1:-1:-1;;;;;50212:29:0;;:::o;49656:24::-;;;;:::o;3956:98::-;4036:10;3956:98;:::o;14758:346::-;-1:-1:-1;;;;;14860:19:0;;14852:68;;;;-1:-1:-1;;;14852:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14939:21:0;;14931:68;;;;-1:-1:-1;;;14931:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15012:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;15064:32;;;;;15042:6;;15064:32;:::i;:::-;;;;;;;;14758:346;;;:::o;15395:419::-;15496:24;15523:25;15533:5;15540:7;15523:9;:25::i;:::-;15496:52;;-1:-1:-1;;15563:16:0;:37;15559:248;;15645:6;15625:16;:26;;15617:68;;;;-1:-1:-1;;;15617:68:0;;;;;;;:::i;:::-;15729:51;15738:5;15745:7;15773:6;15754:16;:25;15729:8;:51::i;:::-;15395:419;;;;:::o;51330:1900::-;-1:-1:-1;;;;;51426:18:0;;51418:68;;;;-1:-1:-1;;;51418:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51503:16:0;;51495:64;;;;-1:-1:-1;;;51495:64:0;;;;;;;:::i;:::-;51574:11;51570:83;;51598:28;51614:4;51620:2;51624:1;51598:15;:28::i;:::-;51637:7;;51570:83;51667:14;;;;;;;51663:684;;;51706:5;;-1:-1:-1;;;;;51698:13:0;;;51706:5;;51698:13;;;;:28;;-1:-1:-1;51721:5:0;;-1:-1:-1;;;;;51715:11:0;;;51721:5;;51715:11;;51698:28;:48;;;;-1:-1:-1;;;;;;51730:16:0;;;;51698:48;:73;;;;-1:-1:-1;;;;;;51750:21:0;;51764:6;51750:21;;51698:73;:86;;;;-1:-1:-1;51776:8:0;;;;;;;51775:9;51698:86;51694:644;;;51804:13;;;;51799:136;;-1:-1:-1;;;;;51842:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;51871:23:0;;;;;;:19;:23;;;;;;;;51842:52;51834:87;;;;-1:-1:-1;;;51834:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;51971:31:0;;;;;;:25;:31;;;;;;;;:60;;;;-1:-1:-1;;;;;;52007:24:0;;;;;;:20;:24;;;;;;;;52006:25;51971:60;51967:360;;;52082:9;;52065:13;52075:2;52065:9;:13::i;:::-;52056:22;;:6;:22;:::i;:::-;:35;;52048:67;;;;-1:-1:-1;;;52048:67:0;;;;;;;:::i;:::-;51967:360;;;-1:-1:-1;;;;;52169:29:0;;;;;;:25;:29;;;;;;;;:60;;;;-1:-1:-1;;;;;;52203:26:0;;;;;;:20;:26;;;;;;;;52202:27;52169:60;52165:162;;;52280:9;;52263:13;52273:2;52263:9;:13::i;:::-;52254:22;;:6;:22;:::i;:::-;:35;;52246:67;;;;-1:-1:-1;;;52246:67:0;;;;;;;:::i;:::-;52357:28;52388:24;52406:4;52388:9;:24::i;:::-;52462:18;;52357:55;;-1:-1:-1;52438:42:0;;;;;;;52505:31;;-1:-1:-1;52525:11:0;;;;;;;52505:31;:53;;;;-1:-1:-1;52550:8:0;;;;;;;52549:9;52505:53;:98;;;;-1:-1:-1;;;;;;52572:31:0;;;;;;:25;:31;;;;;;;;52571:32;52505:98;:137;;;;-1:-1:-1;;;;;;52617:25:0;;;;;;:19;:25;;;;;;;;52616:26;52505:137;:174;;;;-1:-1:-1;;;;;;52656:23:0;;;;;;:19;:23;;;;;;;;52655:24;52505:174;52491:327;;;52700:8;:15;;-1:-1:-1;;52700:15:0;;;;;52761:18;;52726:55;;52735:45;;52739:20;;52735:3;:45::i;:::-;52726:8;:55::i;:::-;52792:8;:16;;-1:-1:-1;;52792:16:0;;;52491:327;52844:8;;-1:-1:-1;;;;;52867:25:0;;52828:12;52867:25;;;:19;:25;;;;;;52844:8;;;;;;;52843:9;;52867:25;;:52;;-1:-1:-1;;;;;;52896:23:0;;;;;;:19;:23;;;;;;;;52867:52;52863:94;;;-1:-1:-1;52942:5:0;52863:94;52967:12;52998:7;52994:185;;;53048:3;53036:9;:7;:9::i;:::-;53027:18;;:6;:18;:::i;:::-;:24;;;;:::i;:::-;53020:31;-1:-1:-1;53068:8:0;;53064:81;;53091:42;53107:4;53121;53128;53091:15;:42::i;:::-;53155:14;53165:4;53155:14;;:::i;:::-;;;52994:185;53189:33;53205:4;53211:2;53215:6;53189:15;:33::i;:::-;51330:1900;;;;;;;:::o;53770:334::-;53821:12;53848:11;53844:44;;53872:7;;;53844:44;53927:6;53942:36;53927:6;53942:16;:36::i;:::-;54060:5;;54052:44;;54008:21;;-1:-1:-1;;;;;54060:5:0;;54008:21;;54052:44;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11671:806;-1:-1:-1;;;;;11768:18:0;;11760:68;;;;-1:-1:-1;;;11760:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11847:16:0;;11839:64;;;;-1:-1:-1;;;11839:64:0;;;;;;;:::i;:::-;11916:38;11937:4;11943:2;11947:6;11916:20;:38::i;:::-;-1:-1:-1;;;;;11989:15:0;;11967:19;11989:15;;;;;;;;;;;12023:21;;;;12015:72;;;;-1:-1:-1;;;12015:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12123:15:0;;;:9;:15;;;;;;;;;;;12141:20;;;12123:38;;12341:13;;;;;;;;;;:23;;;;;;12393:26;;;;;;12155:6;;12393:26;:::i;:::-;;;;;;;;12432:37;12452:4;12458:2;12462:6;12432:19;:37::i;53238:105::-;53295:7;53325:1;53321;:5;53320:15;;53334:1;53320:15;;;53330:1;53320:15;53313:22;53238:105;-1:-1:-1;;;53238:105:0:o;53351:411::-;53439:16;;;53453:1;53439:16;;;;;;;;53415:21;;53439:16;;;;;;;;;;-1:-1:-1;53439:16:0;53415:40;;53482:4;53464;53469:1;53464:7;;;;;;-1:-1:-1;;;53464:7:0;;;;;;;;;-1:-1:-1;;;;;53464:23:0;;;:7;;;;;;;;;;:23;;;;53506:7;;:14;;;-1:-1:-1;;;53506:14:0;;;;:7;;;;;:12;;:14;;;;;53464:7;;53506:14;;;;;:7;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53496:4;53501:1;53496:7;;;;;;-1:-1:-1;;;53496:7:0;;;;;;;;;-1:-1:-1;;;;;53496:24:0;;;:7;;;;;;;;;:24;53563:7;;53531:54;;53548:4;;53563:7;53573:11;53531:8;:54::i;:::-;53596:7;;53714:5;;53596:158;;-1:-1:-1;;;53596:158:0;;-1:-1:-1;;;;;53596:7:0;;;;:58;;:158;;53665:11;;53596:7;;53699:4;;53714:5;;;53730:15;;53596:158;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53351:411;;:::o;14:138:1:-;84:20;;113:33;84:20;113:33;:::i;157:259::-;;269:2;257:9;248:7;244:23;240:32;237:2;;;290:6;282;275:22;237:2;334:9;321:23;353:33;380:5;353:33;:::i;421:263::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;565:6;557;550:22;512:2;602:9;596:16;621:33;648:5;621:33;:::i;689:402::-;;;818:2;806:9;797:7;793:23;789:32;786:2;;;839:6;831;824:22;786:2;883:9;870:23;902:33;929:5;902:33;:::i;:::-;954:5;-1:-1:-1;1011:2:1;996:18;;983:32;1024:35;983:32;1024:35;:::i;:::-;1078:7;1068:17;;;776:315;;;;;:::o;1096:470::-;;;;1242:2;1230:9;1221:7;1217:23;1213:32;1210:2;;;1263:6;1255;1248:22;1210:2;1307:9;1294:23;1326:33;1353:5;1326:33;:::i;:::-;1378:5;-1:-1:-1;1435:2:1;1420:18;;1407:32;1448:35;1407:32;1448:35;:::i;:::-;1200:366;;1502:7;;-1:-1:-1;;;1556:2:1;1541:18;;;;1528:32;;1200:366::o;1571:396::-;;;1697:2;1685:9;1676:7;1672:23;1668:32;1665:2;;;1718:6;1710;1703:22;1665:2;1762:9;1749:23;1781:33;1808:5;1781:33;:::i;:::-;1833:5;-1:-1:-1;1890:2:1;1875:18;;1862:32;1903;1862;1903;:::i;1972:327::-;;;2101:2;2089:9;2080:7;2076:23;2072:32;2069:2;;;2122:6;2114;2107:22;2069:2;2166:9;2153:23;2185:33;2212:5;2185:33;:::i;:::-;2237:5;2289:2;2274:18;;;;2261:32;;-1:-1:-1;;;2059:240:1:o;2304:1166::-;;2419:2;2462;2450:9;2441:7;2437:23;2433:32;2430:2;;;2483:6;2475;2468:22;2430:2;2528:9;2515:23;2557:18;2598:2;2590:6;2587:14;2584:2;;;2619:6;2611;2604:22;2584:2;2662:6;2651:9;2647:22;2637:32;;2707:7;2700:4;2696:2;2692:13;2688:27;2678:2;;2734:6;2726;2719:22;2678:2;2775;2762:16;2797:2;2793;2790:10;2787:2;;;2803:18;;:::i;:::-;2850:2;2846;2842:11;2882:2;2876:9;2933:2;2928;2920:6;2916:15;2912:24;2986:6;2974:10;2971:22;2966:2;2954:10;2951:18;2948:46;2945:2;;;2997:18;;:::i;:::-;3033:2;3026:22;3083:18;;;3117:15;;;;-1:-1:-1;3152:11:1;;;3182;;;3178:20;;3175:33;-1:-1:-1;3172:2:1;;;3226:6;3218;3211:22;3172:2;3253:6;3244:15;;3268:171;3282:2;3279:1;3276:9;3268:171;;;3339:25;3360:3;3339:25;:::i;:::-;3327:38;;3300:1;3293:9;;;;;3385:12;;;;3417;;3268:171;;;-1:-1:-1;3458:6:1;2399:1071;-1:-1:-1;;;;;;;;2399:1071:1:o;3475:253::-;;3584:2;3572:9;3563:7;3559:23;3555:32;3552:2;;;3605:6;3597;3590:22;3552:2;3649:9;3636:23;3668:30;3692:5;3668:30;:::i;3733:257::-;;3853:2;3841:9;3832:7;3828:23;3824:32;3821:2;;;3874:6;3866;3859:22;3821:2;3911:9;3905:16;3930:30;3954:5;3930:30;:::i;3995:190::-;;4107:2;4095:9;4086:7;4082:23;4078:32;4075:2;;;4128:6;4120;4113:22;4075:2;-1:-1:-1;4156:23:1;;4065:120;-1:-1:-1;4065:120:1:o;4190:205::-;4390:3;4381:14::o;4400:203::-;-1:-1:-1;;;;;4564:32:1;;;;4546:51;;4534:2;4519:18;;4501:102::o;4608:274::-;-1:-1:-1;;;;;4800:32:1;;;;4782:51;;4864:2;4849:18;;4842:34;4770:2;4755:18;;4737:145::o;4887:187::-;5052:14;;5045:22;5027:41;;5015:2;5000:18;;4982:92::o;5310:603::-;;5451:2;5480;5469:9;5462:21;5512:6;5506:13;5555:6;5550:2;5539:9;5535:18;5528:34;5580:4;5593:140;5607:6;5604:1;5601:13;5593:140;;;5702:14;;;5698:23;;5692:30;5668:17;;;5687:2;5664:26;5657:66;5622:10;;5593:140;;;5751:6;5748:1;5745:13;5742:2;;;5821:4;5816:2;5807:6;5796:9;5792:22;5788:31;5781:45;5742:2;-1:-1:-1;5897:2:1;5876:15;-1:-1:-1;;5872:29:1;5857:45;;;;5904:2;5853:54;;5431:482;-1:-1:-1;;;5431:482:1:o;5918:399::-;6120:2;6102:21;;;6159:2;6139:18;;;6132:30;6198:34;6193:2;6178:18;;6171:62;-1:-1:-1;;;6264:2:1;6249:18;;6242:33;6307:3;6292:19;;6092:225::o;6322:346::-;6524:2;6506:21;;;6563:2;6543:18;;;6536:30;-1:-1:-1;;;6597:2:1;6582:18;;6575:52;6659:2;6644:18;;6496:172::o;6673:398::-;6875:2;6857:21;;;6914:2;6894:18;;;6887:30;6953:34;6948:2;6933:18;;6926:62;-1:-1:-1;;;7019:2:1;7004:18;;6997:32;7061:3;7046:19;;6847:224::o;7076:339::-;7278:2;7260:21;;;7317:2;7297:18;;;7290:30;-1:-1:-1;;;7351:2:1;7336:18;;7329:45;7406:2;7391:18;;7250:165::o;7420:353::-;7622:2;7604:21;;;7661:2;7641:18;;;7634:30;7700:31;7695:2;7680:18;;7673:59;7764:2;7749:18;;7594:179::o;7778:402::-;7980:2;7962:21;;;8019:2;7999:18;;;7992:30;8058:34;8053:2;8038:18;;8031:62;-1:-1:-1;;;8124:2:1;8109:18;;8102:36;8170:3;8155:19;;7952:228::o;8185:401::-;8387:2;8369:21;;;8426:2;8406:18;;;8399:30;8465:34;8460:2;8445:18;;8438:62;-1:-1:-1;;;8531:2:1;8516:18;;8509:35;8576:3;8561:19;;8359:227::o;8591:400::-;8793:2;8775:21;;;8832:2;8812:18;;;8805:30;8871:34;8866:2;8851:18;;8844:62;-1:-1:-1;;;8937:2:1;8922:18;;8915:34;8981:3;8966:19;;8765:226::o;8996:343::-;9198:2;9180:21;;;9237:2;9217:18;;;9210:30;-1:-1:-1;;;9271:2:1;9256:18;;9249:49;9330:2;9315:18;;9170:169::o;9344:401::-;9546:2;9528:21;;;9585:2;9565:18;;;9558:30;9624:34;9619:2;9604:18;;9597:62;-1:-1:-1;;;9690:2:1;9675:18;;9668:35;9735:3;9720:19;;9518:227::o;9750:336::-;9952:2;9934:21;;;9991:2;9971:18;;;9964:30;-1:-1:-1;;;10025:2:1;10010:18;;10003:42;10077:2;10062:18;;9924:162::o;10091:177::-;10237:25;;;10225:2;10210:18;;10192:76::o;10273:983::-;;10583:3;10572:9;10568:19;10614:6;10603:9;10596:25;10640:2;10678:6;10673:2;10662:9;10658:18;10651:34;10721:3;10716:2;10705:9;10701:18;10694:31;10745:6;10780;10774:13;10811:6;10803;10796:22;10849:3;10838:9;10834:19;10827:26;;10888:2;10880:6;10876:15;10862:29;;10909:4;10922:195;10936:6;10933:1;10930:13;10922:195;;;11001:13;;-1:-1:-1;;;;;10997:39:1;10985:52;;11092:15;;;;11057:12;;;;11033:1;10951:9;10922:195;;;-1:-1:-1;;;;;;;11173:32:1;;;;11168:2;11153:18;;11146:60;-1:-1:-1;;;11237:3:1;11222:19;11215:35;11134:3;10544:712;-1:-1:-1;;;10544:712:1:o;11261:184::-;11433:4;11421:17;;;;11403:36;;11391:2;11376:18;;11358:87::o;11450:128::-;;11521:1;11517:6;11514:1;11511:13;11508:2;;;11527:18;;:::i;:::-;-1:-1:-1;11563:9:1;;11498:80::o;11583:217::-;;11649:1;11639:2;;-1:-1:-1;;;11674:31:1;;11728:4;11725:1;11718:15;11756:4;11681:1;11746:15;11639:2;-1:-1:-1;11785:9:1;;11629:171::o;11805:168::-;;11911:1;11907;11903:6;11899:14;11896:1;11893:21;11888:1;11881:9;11874:17;11870:45;11867:2;;;11918:18;;:::i;:::-;-1:-1:-1;11958:9:1;;11857:116::o;11978:125::-;;12046:1;12043;12040:8;12037:2;;;12051:18;;:::i;:::-;-1:-1:-1;12088:9:1;;12027:76::o;12108:380::-;12193:1;12183:12;;12240:1;12230:12;;;12251:2;;12305:4;12297:6;12293:17;12283:27;;12251:2;12358;12350:6;12347:14;12327:18;12324:38;12321:2;;;12404:10;12399:3;12395:20;12392:1;12385:31;12439:4;12436:1;12429:15;12467:4;12464:1;12457:15;12321:2;;12163:325;;;:::o;12493:135::-;;-1:-1:-1;;12553:17:1;;12550:2;;;12573:18;;:::i;:::-;-1:-1:-1;12620:1:1;12609:13;;12540:88::o;12633:127::-;12694:10;12689:3;12685:20;12682:1;12675:31;12725:4;12722:1;12715:15;12749:4;12746:1;12739:15;12765:127;12826:10;12821:3;12817:20;12814:1;12807:31;12857:4;12854:1;12847:15;12881:4;12878:1;12871:15;12897:133;-1:-1:-1;;;;;12974:31:1;;12964:42;;12954:2;;13020:1;13017;13010:12;13035:120;13123:5;13116:13;13109:21;13102:5;13099:32;13089:2;;13145:1;13142;13135:12
Swarm Source
ipfs://9fa61716d34d5bf256336fe2902de5948695498a2df52cff36e0e36cc1561266
[ 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.