ERC-20
Overview
Max Total Supply
100,000 AUSPICIUM
Holders
80
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
27.340445227090356796 AUSPICIUMValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Auspicium
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-30 */ // Website: https://auspicium.io // Twitter: https://twitter.com/AuspiciumEth // Telegram: https://t.me/auspiciumeth // The Invisible Hand dictates the movements of our free market. Everything is within its control. // SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.10; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /** * @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; } } /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @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 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); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `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, _allowances[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 = _allowances[owner][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} } contract Auspicium is ERC20, Ownable { using SafeMath for uint256; address private immutable pair; IUniswapV2Router02 private immutable router; address public marketingWallet; uint256 public maxTx; uint256 public maxWallet; mapping(address => bool) private excludedFromLimits; uint256 public buyFee = 3; uint256 public sellFee = 3; mapping(address => bool) private excludedFromFees; bool private swapping; mapping(address => uint256) private addressLastTxBlock; constructor() ERC20("Auspicium", "AUSPICIUM") { uint256 totalSupply = 100000 * 1e18; maxTx = 501 * 1e18; maxWallet = 1501 * 1e18; marketingWallet = address(owner()); router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _excludeFromLimits(address(router), true); _excludeFromLimits(pair, true); _excludeFromLimits(owner(), true); _excludeFromLimits(address(this), true); _excludeFromLimits(address(0xdead), true); _excludeFromFees(owner(), true); _excludeFromFees(address(this), true); _excludeFromFees(address(0xdead), true); _approve(msg.sender, address(router), type(uint256).max); _mint(msg.sender, totalSupply); } receive() external payable {} function updateMaxTx(uint256 _maxTxAmount) external onlyOwner { require(_maxTxAmount * 1e18 >= maxTx, "Max tx can not be lowered"); maxTx = _maxTxAmount * 1e18; } function updateMaxWallet(uint256 _maxWalletAmount) external onlyOwner { require( _maxWalletAmount * 1e18 >= maxWallet, "Max wallet can not be lowered" ); maxWallet = _maxWalletAmount * 1e18; } function updateBuyFee(uint256 _fee) external onlyOwner { require(_fee <= 3, "Buy fee can not be set higher than 3%"); buyFee = _fee; } function updateSellFee(uint256 _fee) external onlyOwner { require(_fee <= 3, "Sell fee can not be set higher than 3%"); sellFee = _fee; } function _transfer( address from, address to, uint256 amount ) internal override { if (amount == 0) { super._transfer(from, to, 0); return; } if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { _checkTx(to); if (_isBuy(from) && !_excludedFromLimits(to)) { _maxTxCheck(amount); _maxWalletCheck(to, amount); } else if (_isSell(to) && !_excludedFromLimits(from)) { _maxTxCheck(amount); } else if (!_excludedFromLimits(to)) { _maxWalletCheck(to, amount); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance > 0; if ( canSwap && !swapping && pair != from && !_excludedFromFees(from) && !_excludedFromFees(to) ) { swapping = true; _swapBack(); swapping = false; } bool takeFee = !swapping; if (_excludedFromFees(from) || _excludedFromFees(to)) { takeFee = false; } if (takeFee) { uint256 fees = 0; if (to == pair) { fees = amount.mul(sellFee).div(100); } // on buy else if (from == pair) { fees = amount.mul(buyFee).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function _checkTx(address _to) internal { if (_to != owner() && _to != pair && _to != address(router)) { require( addressLastTxBlock[tx.origin] != block.number, "Only one purchase per block allowed" ); addressLastTxBlock[tx.origin] = block.number; } } function _swapBack() internal { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } _swapTokensForEth(contractBalance); } function _isSell(address _to) internal view returns (bool) { return _to == pair; } function _isBuy(address _from) internal view returns (bool) { return _from == pair; } function _excludeFromFees(address _addr, bool _doesBypass) internal { excludedFromFees[_addr] = _doesBypass; } function _excludedFromFees(address _addr) internal view returns (bool) { return excludedFromFees[_addr]; } function _excludeFromLimits(address _addr, bool _doesBypass) internal { excludedFromLimits[_addr] = _doesBypass; } function _excludedFromLimits(address _addr) internal view returns (bool) { return excludedFromLimits[_addr]; } function _maxTxCheck(uint256 _amount) internal view { require(_amount <= maxTx, "Max transaction limit reached"); } function _maxWalletCheck(address _addr, uint256 _amount) internal view { require( _amount + balanceOf(_addr) <= maxWallet, "Max wallet limit reached" ); } function _swapTokensForEth(uint256 _tokenAmount) internal { // generate the uniswap pair path of token -> weth 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, address(marketingWallet), block.timestamp ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"updateMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526003600a556003600b553480156200001b57600080fd5b506040518060400160405280600981526020016841757370696369756d60b81b8152506040518060400160405280600981526020016841555350494349554d60b81b815250816003908162000071919062000672565b50600462000080828262000672565b5050506200009d620000976200036260201b60201c565b62000366565b681b28c58d9696b4000060075568515e8f3b5c7554000060085569152d02c7e14af6800000620000d56005546001600160a01b031690565b600680546001600160a01b0319166001600160a01b0392909216919091179055737a250d5630b4cf539739df2c5dacb4c659f2488d60a08190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200017191906200073e565b6001600160a01b031663c9c653963060a0516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e791906200073e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000235573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025b91906200073e565b6001600160a01b03908116608081905260a05180831660009081526009602090815260408083208054600160ff1991821681179092559584528184208054871682179055600580548816855282852080548816831790553080865283862080548916841790557f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb193075003785805489168417905590549097168452600c9092528083208054861683179055948252938120805484168517905561dead90527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c805490921690921790556200034f903390600019620003b8565b6200035b3382620004e4565b5062000798565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620004205760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620004835760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000417565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166200053c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000417565b806002600082825462000550919062000770565b90915550506001600160a01b038216600090815260208190526040812080548392906200057f90849062000770565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005f957607f821691505b6020821081036200061a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005c957600081815260208120601f850160051c81016020861015620006495750805b601f850160051c820191505b818110156200066a5782815560010162000655565b505050505050565b81516001600160401b038111156200068e576200068e620005ce565b620006a6816200069f8454620005e4565b8462000620565b602080601f831160018114620006de5760008415620006c55750858301515b600019600386901b1c1916600185901b1785556200066a565b600085815260208120601f198616915b828110156200070f57888601518255948401946001909101908401620006ee565b50858210156200072e5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075157600080fd5b81516001600160a01b03811681146200076957600080fd5b9392505050565b808201808211156200079257634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516117a8620007f66000396000818161111d0152818161133b015281816113f40152611433015260008181610b9101528181610c0301528181610cc501528181610dbe01528181610e1e01526110df01526117a86000f3fe6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d714610380578063a9059cbb146103a0578063c2d0ffca146103c0578063dd62ed3e146103e0578063f2fde38b14610426578063f8b45b051461044657600080fd5b806370a08231146102b4578063715018a6146102ea5780637437681e146102ff57806375f0a874146103155780638da5cb5b1461034d57806395d89b411461036b57600080fd5b806323b872dd1161010857806323b872dd1461020c5780632b14ca561461022c578063313ce56714610242578063395093511461025e578063467abe0a1461027e578063470624021461029e57600080fd5b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab5780631c499ab0146101ca5780631d933a4a146101ec57600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561045c565b60405161017291906114a3565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611506565b6104ee565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b506101ea6101e5366004611532565b610508565b005b3480156101f857600080fd5b506101ea610207366004611532565b6105b6565b34801561021857600080fd5b5061019b61022736600461154b565b610645565b34801561023857600080fd5b506101bc600b5481565b34801561024e57600080fd5b5060405160128152602001610172565b34801561026a57600080fd5b5061019b610279366004611506565b610669565b34801561028a57600080fd5b506101ea610299366004611532565b6106a8565b3480156102aa57600080fd5b506101bc600a5481565b3480156102c057600080fd5b506101bc6102cf36600461158c565b6001600160a01b031660009081526020819052604090205490565b3480156102f657600080fd5b506101ea610736565b34801561030b57600080fd5b506101bc60075481565b34801561032157600080fd5b50600654610335906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b34801561035957600080fd5b506005546001600160a01b0316610335565b34801561037757600080fd5b5061016561076c565b34801561038c57600080fd5b5061019b61039b366004611506565b61077b565b3480156103ac57600080fd5b5061019b6103bb366004611506565b61080d565b3480156103cc57600080fd5b506101ea6103db366004611532565b61081b565b3480156103ec57600080fd5b506101bc6103fb3660046115a9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561043257600080fd5b506101ea61044136600461158c565b6108c0565b34801561045257600080fd5b506101bc60085481565b60606003805461046b906115e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610497906115e2565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b6000336104fc81858561095b565b60019150505b92915050565b6005546001600160a01b0316331461053b5760405162461bcd60e51b81526004016105329061161c565b60405180910390fd5b60085461055082670de0b6b3a7640000611667565b101561059e5760405162461bcd60e51b815260206004820152601d60248201527f4d61782077616c6c65742063616e206e6f74206265206c6f77657265640000006044820152606401610532565b6105b081670de0b6b3a7640000611667565b60085550565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016105329061161c565b60038111156106405760405162461bcd60e51b815260206004820152602660248201527f53656c6c206665652063616e206e6f742062652073657420686967686572207460448201526568616e20332560d01b6064820152608401610532565b600b55565b600033610653858285610a7f565b61065e858585610b11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104fc90829086906106a3908790611686565b61095b565b6005546001600160a01b031633146106d25760405162461bcd60e51b81526004016105329061161c565b60038111156107315760405162461bcd60e51b815260206004820152602560248201527f427579206665652063616e206e6f742062652073657420686967686572207468604482015264616e20332560d81b6064820152608401610532565b600a55565b6005546001600160a01b031633146107605760405162461bcd60e51b81526004016105329061161c565b61076a6000610ea4565b565b60606004805461046b906115e2565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b61065e828686840361095b565b6000336104fc818585610b11565b6005546001600160a01b031633146108455760405162461bcd60e51b81526004016105329061161c565b60075461085a82670de0b6b3a7640000611667565b10156108a85760405162461bcd60e51b815260206004820152601960248201527f4d61782074782063616e206e6f74206265206c6f7765726564000000000000006044820152606401610532565b6108ba81670de0b6b3a7640000611667565b60075550565b6005546001600160a01b031633146108ea5760405162461bcd60e51b81526004016105329061161c565b6001600160a01b03811661094f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b61095881610ea4565b50565b6001600160a01b0383166109bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b0b5781811015610afe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610532565b610b0b848484840361095b565b50505050565b80600003610b2a57610b2583836000610ef6565b505050565b6005546001600160a01b03848116911614801590610b5657506005546001600160a01b03838116911614155b8015610b6a57506001600160a01b03821615155b8015610b8157506001600160a01b03821661dead14155b15610c8e57610b8f826110c4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116908416148015610be457506001600160a01b03821660009081526009602052604090205460ff16155b15610c0157610bf2816111d7565b610bfc8282611229565b610c8e565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03908116908316148015610c5657506001600160a01b03831660009081526009602052604090205460ff16155b15610c6457610bfc816111d7565b6001600160a01b03821660009081526009602052604090205460ff16610c8e57610c8e8282611229565b3060009081526020819052604090205480158015908190610cb25750600d5460ff16155b8015610cf05750846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614155b8015610d1557506001600160a01b0385166000908152600c602052604090205460ff16155b8015610d3a57506001600160a01b0384166000908152600c602052604090205460ff16155b15610d5f57600d805460ff19166001179055610d546112a1565b600d805460ff191690555b600d5460ff1615610d88866001600160a01b03166000908152600c602052604090205460ff1690565b80610dab57506001600160a01b0385166000908152600c602052604090205460ff165b15610db4575060005b8015610e915760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031603610e1c57610e156064610e0f600b54886112c590919063ffffffff16565b906112d8565b9050610e72565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031603610e7257610e6f6064610e0f600a54886112c590919063ffffffff16565b90505b8015610e8357610e83873083610ef6565b610e8d8186611699565b9450505b610e9c868686610ef6565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f5a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6001600160a01b038316600090815260208190526040902054818110156110345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061106b908490611686565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b791815260200190565b60405180910390a3610b0b565b6005546001600160a01b0382811691161480159061111457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b801561115257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614155b1561095857326000908152600e60205260409020544390036111c25760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f6044820152621dd95960ea1b6064820152608401610532565b326000908152600e6020526040902043905550565b6007548111156109585760405162461bcd60e51b815260206004820152601d60248201527f4d6178207472616e73616374696f6e206c696d697420726561636865640000006044820152606401610532565b6008546001600160a01b03831660009081526020819052604090205461124f9083611686565b111561129d5760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d6974207265616368656400000000000000006044820152606401610532565b5050565b30600090815260208190526040812054908190036112bc5750565b610958816112e4565b60006112d18284611667565b9392505050565b60006112d182846116ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611319576113196116ce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611397573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bb91906116e4565b816001815181106113ce576113ce6116ce565b60200260200101906001600160a01b031690816001600160a01b031681525050611419307f00000000000000000000000000000000000000000000000000000000000000008461095b565b60065460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792611475928792600092889291909116904290600401611701565b600060405180830381600087803b15801561148f57600080fd5b505af1158015610e9c573d6000803e3d6000fd5b600060208083528351808285015260005b818110156114d0578581018301518582016040015282016114b4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461095857600080fd5b6000806040838503121561151957600080fd5b8235611524816114f1565b946020939093013593505050565b60006020828403121561154457600080fd5b5035919050565b60008060006060848603121561156057600080fd5b833561156b816114f1565b9250602084013561157b816114f1565b929592945050506040919091013590565b60006020828403121561159e57600080fd5b81356112d1816114f1565b600080604083850312156115bc57600080fd5b82356115c7816114f1565b915060208301356115d7816114f1565b809150509250929050565b600181811c908216806115f657607f821691505b60208210810361161657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561168157611681611651565b500290565b8082018082111561050257610502611651565b8181038181111561050257610502611651565b6000826116c957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116f657600080fd5b81516112d1816114f1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117515784516001600160a01b03168352938301939183019160010161172c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201e4c9633c80e9a74c7d3c0cd9e51a770b0d770a919b0a3728742991495e6d23464736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101445760003560e01c806370a08231116100b6578063a457c2d71161006f578063a457c2d714610380578063a9059cbb146103a0578063c2d0ffca146103c0578063dd62ed3e146103e0578063f2fde38b14610426578063f8b45b051461044657600080fd5b806370a08231146102b4578063715018a6146102ea5780637437681e146102ff57806375f0a874146103155780638da5cb5b1461034d57806395d89b411461036b57600080fd5b806323b872dd1161010857806323b872dd1461020c5780632b14ca561461022c578063313ce56714610242578063395093511461025e578063467abe0a1461027e578063470624021461029e57600080fd5b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101ab5780631c499ab0146101ca5780631d933a4a146101ec57600080fd5b3661014b57005b600080fd5b34801561015c57600080fd5b5061016561045c565b60405161017291906114a3565b60405180910390f35b34801561018757600080fd5b5061019b610196366004611506565b6104ee565b6040519015158152602001610172565b3480156101b757600080fd5b506002545b604051908152602001610172565b3480156101d657600080fd5b506101ea6101e5366004611532565b610508565b005b3480156101f857600080fd5b506101ea610207366004611532565b6105b6565b34801561021857600080fd5b5061019b61022736600461154b565b610645565b34801561023857600080fd5b506101bc600b5481565b34801561024e57600080fd5b5060405160128152602001610172565b34801561026a57600080fd5b5061019b610279366004611506565b610669565b34801561028a57600080fd5b506101ea610299366004611532565b6106a8565b3480156102aa57600080fd5b506101bc600a5481565b3480156102c057600080fd5b506101bc6102cf36600461158c565b6001600160a01b031660009081526020819052604090205490565b3480156102f657600080fd5b506101ea610736565b34801561030b57600080fd5b506101bc60075481565b34801561032157600080fd5b50600654610335906001600160a01b031681565b6040516001600160a01b039091168152602001610172565b34801561035957600080fd5b506005546001600160a01b0316610335565b34801561037757600080fd5b5061016561076c565b34801561038c57600080fd5b5061019b61039b366004611506565b61077b565b3480156103ac57600080fd5b5061019b6103bb366004611506565b61080d565b3480156103cc57600080fd5b506101ea6103db366004611532565b61081b565b3480156103ec57600080fd5b506101bc6103fb3660046115a9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561043257600080fd5b506101ea61044136600461158c565b6108c0565b34801561045257600080fd5b506101bc60085481565b60606003805461046b906115e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610497906115e2565b80156104e45780601f106104b9576101008083540402835291602001916104e4565b820191906000526020600020905b8154815290600101906020018083116104c757829003601f168201915b5050505050905090565b6000336104fc81858561095b565b60019150505b92915050565b6005546001600160a01b0316331461053b5760405162461bcd60e51b81526004016105329061161c565b60405180910390fd5b60085461055082670de0b6b3a7640000611667565b101561059e5760405162461bcd60e51b815260206004820152601d60248201527f4d61782077616c6c65742063616e206e6f74206265206c6f77657265640000006044820152606401610532565b6105b081670de0b6b3a7640000611667565b60085550565b6005546001600160a01b031633146105e05760405162461bcd60e51b81526004016105329061161c565b60038111156106405760405162461bcd60e51b815260206004820152602660248201527f53656c6c206665652063616e206e6f742062652073657420686967686572207460448201526568616e20332560d01b6064820152608401610532565b600b55565b600033610653858285610a7f565b61065e858585610b11565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104fc90829086906106a3908790611686565b61095b565b6005546001600160a01b031633146106d25760405162461bcd60e51b81526004016105329061161c565b60038111156107315760405162461bcd60e51b815260206004820152602560248201527f427579206665652063616e206e6f742062652073657420686967686572207468604482015264616e20332560d81b6064820152608401610532565b600a55565b6005546001600160a01b031633146107605760405162461bcd60e51b81526004016105329061161c565b61076a6000610ea4565b565b60606004805461046b906115e2565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156108005760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610532565b61065e828686840361095b565b6000336104fc818585610b11565b6005546001600160a01b031633146108455760405162461bcd60e51b81526004016105329061161c565b60075461085a82670de0b6b3a7640000611667565b10156108a85760405162461bcd60e51b815260206004820152601960248201527f4d61782074782063616e206e6f74206265206c6f7765726564000000000000006044820152606401610532565b6108ba81670de0b6b3a7640000611667565b60075550565b6005546001600160a01b031633146108ea5760405162461bcd60e51b81526004016105329061161c565b6001600160a01b03811661094f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610532565b61095881610ea4565b50565b6001600160a01b0383166109bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610532565b6001600160a01b038216610a1e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610532565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b0b5781811015610afe5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610532565b610b0b848484840361095b565b50505050565b80600003610b2a57610b2583836000610ef6565b505050565b6005546001600160a01b03848116911614801590610b5657506005546001600160a01b03838116911614155b8015610b6a57506001600160a01b03821615155b8015610b8157506001600160a01b03821661dead14155b15610c8e57610b8f826110c4565b7f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b03908116908416148015610be457506001600160a01b03821660009081526009602052604090205460ff16155b15610c0157610bf2816111d7565b610bfc8282611229565b610c8e565b7f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b03908116908316148015610c5657506001600160a01b03831660009081526009602052604090205460ff16155b15610c6457610bfc816111d7565b6001600160a01b03821660009081526009602052604090205460ff16610c8e57610c8e8282611229565b3060009081526020819052604090205480158015908190610cb25750600d5460ff16155b8015610cf05750846001600160a01b03167f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b031614155b8015610d1557506001600160a01b0385166000908152600c602052604090205460ff16155b8015610d3a57506001600160a01b0384166000908152600c602052604090205460ff16155b15610d5f57600d805460ff19166001179055610d546112a1565b600d805460ff191690555b600d5460ff1615610d88866001600160a01b03166000908152600c602052604090205460ff1690565b80610dab57506001600160a01b0385166000908152600c602052604090205460ff165b15610db4575060005b8015610e915760007f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b0316866001600160a01b031603610e1c57610e156064610e0f600b54886112c590919063ffffffff16565b906112d8565b9050610e72565b7f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b0316876001600160a01b031603610e7257610e6f6064610e0f600a54886112c590919063ffffffff16565b90505b8015610e8357610e83873083610ef6565b610e8d8186611699565b9450505b610e9c868686610ef6565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610f5a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610532565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610532565b6001600160a01b038316600090815260208190526040902054818110156110345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610532565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061106b908490611686565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110b791815260200190565b60405180910390a3610b0b565b6005546001600160a01b0382811691161480159061111457507f000000000000000000000000a2bef064207ba914f39c77a3cddccc5fe3a2ff226001600160a01b0316816001600160a01b031614155b801561115257507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316816001600160a01b031614155b1561095857326000908152600e60205260409020544390036111c25760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f6e652070757263686173652070657220626c6f636b20616c6c6f6044820152621dd95960ea1b6064820152608401610532565b326000908152600e6020526040902043905550565b6007548111156109585760405162461bcd60e51b815260206004820152601d60248201527f4d6178207472616e73616374696f6e206c696d697420726561636865640000006044820152606401610532565b6008546001600160a01b03831660009081526020819052604090205461124f9083611686565b111561129d5760405162461bcd60e51b815260206004820152601860248201527f4d61782077616c6c6574206c696d6974207265616368656400000000000000006044820152606401610532565b5050565b30600090815260208190526040812054908190036112bc5750565b610958816112e4565b60006112d18284611667565b9392505050565b60006112d182846116ac565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611319576113196116ce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611397573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113bb91906116e4565b816001815181106113ce576113ce6116ce565b60200260200101906001600160a01b031690816001600160a01b031681525050611419307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461095b565b60065460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792611475928792600092889291909116904290600401611701565b600060405180830381600087803b15801561148f57600080fd5b505af1158015610e9c573d6000803e3d6000fd5b600060208083528351808285015260005b818110156114d0578581018301518582016040015282016114b4565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461095857600080fd5b6000806040838503121561151957600080fd5b8235611524816114f1565b946020939093013593505050565b60006020828403121561154457600080fd5b5035919050565b60008060006060848603121561156057600080fd5b833561156b816114f1565b9250602084013561157b816114f1565b929592945050506040919091013590565b60006020828403121561159e57600080fd5b81356112d1816114f1565b600080604083850312156115bc57600080fd5b82356115c7816114f1565b915060208301356115d7816114f1565b809150509250929050565b600181811c908216806115f657607f821691505b60208210810361161657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561168157611681611651565b500290565b8082018082111561050257610502611651565b8181038181111561050257610502611651565b6000826116c957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156116f657600080fd5b81516112d1816114f1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117515784516001600160a01b03168352938301939183019160010161172c565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201e4c9633c80e9a74c7d3c0cd9e51a770b0d770a919b0a3728742991495e6d23464736f6c63430008100033
Deployed Bytecode Sourcemap
36341:6315:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25177:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27669:242;;;;;;;;;;-1:-1:-1;27669:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;27669:242:0;1023:187:1;26297:108:0;;;;;;;;;;-1:-1:-1;26385:12:0;;26297:108;;;1361:25:1;;;1349:2;1334:18;26297:108:0;1215:177:1;38042:250:0;;;;;;;;;;-1:-1:-1;38042:250:0;;;;;:::i;:::-;;:::i;:::-;;38465:160;;;;;;;;;;-1:-1:-1;38465:160:0;;;;;:::i;:::-;;:::i;28491:295::-;;;;;;;;;;-1:-1:-1;28491:295:0;;;;;:::i;:::-;;:::i;36700:26::-;;;;;;;;;;;;;;;;26139:93;;;;;;;;;;-1:-1:-1;26139:93:0;;26222:2;2185:36:1;;2173:2;2158:18;26139:93:0;2043:184:1;29195:272:0;;;;;;;;;;-1:-1:-1;29195:272:0;;;;;:::i;:::-;;:::i;38300:157::-;;;;;;;;;;-1:-1:-1;38300:157:0;;;;;:::i;:::-;;:::i;36668:25::-;;;;;;;;;;;;;;;;26468:177;;;;;;;;;;-1:-1:-1;26468:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;26619:18:0;26587:7;26619:18;;;;;;;;;;;;26468:177;19023:103;;;;;;;;;;;;;:::i;36548:20::-;;;;;;;;;;;;;;;;36509:30;;;;;;;;;;-1:-1:-1;36509:30:0;;;;-1:-1:-1;;;;;36509:30:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;36509:30:0;2484:203:1;18372:87:0;;;;;;;;;;-1:-1:-1;18445:6:0;;-1:-1:-1;;;;;18445:6:0;18372:87;;25396:104;;;;;;;;;;;;;:::i;29970:507::-;;;;;;;;;;-1:-1:-1;29970:507:0;;;;;:::i;:::-;;:::i;26851:234::-;;;;;;;;;;-1:-1:-1;26851:234:0;;;;;:::i;:::-;;:::i;37849:185::-;;;;;;;;;;-1:-1:-1;37849:185:0;;;;;:::i;:::-;;:::i;27148:201::-;;;;;;;;;;-1:-1:-1;27148:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;27314:18:0;;;27282:7;27314:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;27148:201;19281:238;;;;;;;;;;-1:-1:-1;19281:238:0;;;;;:::i;:::-;;:::i;36575:24::-;;;;;;;;;;;;;;;;25177:100;25231:13;25264:5;25257:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25177:100;:::o;27669:242::-;27788:4;17294:10;27849:32;17294:10;27865:7;27874:6;27849:8;:32::i;:::-;27899:4;27892:11;;;27669:242;;;;;:::o;38042:250::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;;;;;;;;;38172:9:::1;::::0;38145:23:::1;:16:::0;38164:4:::1;38145:23;:::i;:::-;:36;;38123:115;;;::::0;-1:-1:-1;;;38123:115:0;;4338:2:1;38123:115:0::1;::::0;::::1;4320:21:1::0;4377:2;4357:18;;;4350:30;4416:31;4396:18;;;4389:59;4465:18;;38123:115:0::1;4136:353:1::0;38123:115:0::1;38261:23;:16:::0;38280:4:::1;38261:23;:::i;:::-;38249:9;:35:::0;-1:-1:-1;38042:250:0:o;38465:160::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;38548:1:::1;38540:4;:9;;38532:60;;;::::0;-1:-1:-1;;;38532:60:0;;4696:2:1;38532:60:0::1;::::0;::::1;4678:21:1::0;4735:2;4715:18;;;4708:30;4774:34;4754:18;;;4747:62;-1:-1:-1;;;4825:18:1;;;4818:36;4871:19;;38532:60:0::1;4494:402:1::0;38532:60:0::1;38603:7;:14:::0;38465:160::o;28491:295::-;28622:4;17294:10;28680:38;28696:4;17294:10;28711:6;28680:15;:38::i;:::-;28729:27;28739:4;28745:2;28749:6;28729:9;:27::i;:::-;-1:-1:-1;28774:4:0;;28491:295;-1:-1:-1;;;;28491:295:0:o;29195:272::-;17294:10;29310:4;29396:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;29396:27:0;;;;;;;;;;29310:4;;17294:10;29371:66;;17294:10;;29396:27;;:40;;29426:10;;29396:40;:::i;:::-;29371:8;:66::i;38300:157::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;38382:1:::1;38374:4;:9;;38366:59;;;::::0;-1:-1:-1;;;38366:59:0;;5233:2:1;38366:59:0::1;::::0;::::1;5215:21:1::0;5272:2;5252:18;;;5245:30;5311:34;5291:18;;;5284:62;-1:-1:-1;;;5362:18:1;;;5355:35;5407:19;;38366:59:0::1;5031:401:1::0;38366:59:0::1;38436:6;:13:::0;38300:157::o;19023:103::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;19088:30:::1;19115:1;19088:18;:30::i;:::-;19023:103::o:0;25396:104::-;25452:13;25485:7;25478:14;;;;;:::i;29970:507::-;17294:10;30090:4;30178:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;30178:27:0;;;;;;;;;;30090:4;;17294:10;30238:35;;;;30216:122;;;;-1:-1:-1;;;30216:122:0;;5639:2:1;30216:122:0;;;5621:21:1;5678:2;5658:18;;;5651:30;5717:34;5697:18;;;5690:62;-1:-1:-1;;;5768:18:1;;;5761:35;5813:19;;30216:122:0;5437:401:1;30216:122:0;30374:60;30383:5;30390:7;30418:15;30399:16;:34;30374:8;:60::i;26851:234::-;26966:4;17294:10;27027:28;17294:10;27044:2;27048:6;27027:9;:28::i;37849:185::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;37953:5:::1;::::0;37930:19:::1;:12:::0;37945:4:::1;37930:19;:::i;:::-;:28;;37922:66;;;::::0;-1:-1:-1;;;37922:66:0;;6045:2:1;37922:66:0::1;::::0;::::1;6027:21:1::0;6084:2;6064:18;;;6057:30;6123:27;6103:18;;;6096:55;6168:18;;37922:66:0::1;5843:349:1::0;37922:66:0::1;38007:19;:12:::0;38022:4:::1;38007:19;:::i;:::-;37999:5;:27:::0;-1:-1:-1;37849:185:0:o;19281:238::-;18445:6;;-1:-1:-1;;;;;18445:6:0;17294:10;18592:23;18584:68;;;;-1:-1:-1;;;18584:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19384:22:0;::::1;19362:110;;;::::0;-1:-1:-1;;;19362:110:0;;6399:2:1;19362:110:0::1;::::0;::::1;6381:21:1::0;6438:2;6418:18;;;6411:30;6477:34;6457:18;;;6450:62;-1:-1:-1;;;6528:18:1;;;6521:36;6574:19;;19362:110:0::1;6197:402:1::0;19362:110:0::1;19483:28;19502:8;19483:18;:28::i;:::-;19281:238:::0;:::o;33712:380::-;-1:-1:-1;;;;;33848:19:0;;33840:68;;;;-1:-1:-1;;;33840:68:0;;6806:2:1;33840:68:0;;;6788:21:1;6845:2;6825:18;;;6818:30;6884:34;6864:18;;;6857:62;-1:-1:-1;;;6935:18:1;;;6928:34;6979:19;;33840:68:0;6604:400:1;33840:68:0;-1:-1:-1;;;;;33927:21:0;;33919:68;;;;-1:-1:-1;;;33919:68:0;;7211:2:1;33919:68:0;;;7193:21:1;7250:2;7230:18;;;7223:30;7289:34;7269:18;;;7262:62;-1:-1:-1;;;7340:18:1;;;7333:32;7382:19;;33919:68:0;7009:398:1;33919:68:0;-1:-1:-1;;;;;34000:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34052:32;;1361:25:1;;;34052:32:0;;1334:18:1;34052:32:0;;;;;;;33712:380;;;:::o;34379:502::-;-1:-1:-1;;;;;27314:18:0;;;34514:24;27314:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;34581:37:0;;34577:297;;34681:6;34661:16;:26;;34635:117;;;;-1:-1:-1;;;34635:117:0;;7614:2:1;34635:117:0;;;7596:21:1;7653:2;7633:18;;;7626:30;7692:31;7672:18;;;7665:59;7741:18;;34635:117:0;7412:353:1;34635:117:0;34796:51;34805:5;34812:7;34840:6;34821:16;:25;34796:8;:51::i;:::-;34503:378;34379:502;;;:::o;38633:1821::-;38761:6;38771:1;38761:11;38757:93;;38789:28;38805:4;38811:2;38815:1;38789:15;:28::i;:::-;38633:1821;;;:::o;38757:93::-;18445:6;;-1:-1:-1;;;;;38880:15:0;;;18445:6;;38880:15;;;;:45;;-1:-1:-1;18445:6:0;;-1:-1:-1;;;;;38912:13:0;;;18445:6;;38912:13;;38880:45;:78;;;;-1:-1:-1;;;;;;38942:16:0;;;;38880:78;:116;;;;-1:-1:-1;;;;;;38975:21:0;;38989:6;38975:21;;38880:116;38862:552;;;39023:12;39032:2;39023:8;:12::i;:::-;41233:4;-1:-1:-1;;;;;41224:13:0;;;;;;;39056:40;;;;-1:-1:-1;;;;;;41740:25:0;;41716:4;41740:25;;;:18;:25;;;;;;;;39072:24;39056:40;39052:351;;;39117:19;39129:6;39117:11;:19::i;:::-;39155:27;39171:2;39175:6;39155:15;:27::i;:::-;39052:351;;;41233:4;-1:-1:-1;;;;;41224:13:0;;;;;;;39208:41;;;;-1:-1:-1;;;;;;41740:25:0;;41716:4;41740:25;;;:18;:25;;;;;;;;39223:26;39208:41;39204:199;;;39270:19;39282:6;39270:11;:19::i;39204:199::-;-1:-1:-1;;;;;41740:25:0;;41716:4;41740:25;;;:18;:25;;;;;;;;39311:92;;39360:27;39376:2;39380:6;39360:15;:27::i;:::-;39475:4;39426:28;26619:18;;;;;;;;;;;39507:24;;;;;;;39562:33;;-1:-1:-1;39587:8:0;;;;39586:9;39562:33;:62;;;;;39620:4;-1:-1:-1;;;;;39612:12:0;:4;-1:-1:-1;;;;;39612:12:0;;;39562:62;:103;;;;-1:-1:-1;;;;;;41474:23:0;;41450:4;41474:23;;;:16;:23;;;;;;;;39641:24;39562:103;:142;;;;-1:-1:-1;;;;;;41474:23:0;;41450:4;41474:23;;;:16;:23;;;;;;;;39682:22;39562:142;39544:275;;;39731:8;:15;;-1:-1:-1;;39731:15:0;39742:4;39731:15;;;39763:11;:9;:11::i;:::-;39791:8;:16;;-1:-1:-1;;39791:16:0;;;39544:275;39847:8;;;;39846:9;39872:23;39890:4;-1:-1:-1;;;;;41474:23:0;41450:4;41474:23;;;:16;:23;;;;;;;;;41385:120;39872:23;:48;;;-1:-1:-1;;;;;;41474:23:0;;41450:4;41474:23;;;:16;:23;;;;;;;;39899:21;39868:96;;;-1:-1:-1;39947:5:0;39868:96;39980:7;39976:425;;;40004:12;40047:4;-1:-1:-1;;;;;40041:10:0;:2;-1:-1:-1;;;;;40041:10:0;;40037:215;;40079:28;40103:3;40079:19;40090:7;;40079:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;40072:35;;40037:215;;;40177:4;-1:-1:-1;;;;;40169:12:0;:4;-1:-1:-1;;;;;40169:12:0;;40165:87;;40209:27;40232:3;40209:18;40220:6;;40209;:10;;:18;;;;:::i;:27::-;40202:34;;40165:87;40272:8;;40268:91;;40301:42;40317:4;40331;40338;40301:15;:42::i;:::-;40375:14;40385:4;40375:14;;:::i;:::-;;;39989:412;39976:425;40413:33;40429:4;40435:2;40439:6;40413:15;:33::i;:::-;38746:1708;;;38633:1821;;;:::o;19679:191::-;19772:6;;;-1:-1:-1;;;;;19789:17:0;;;-1:-1:-1;;;;;;19789:17:0;;;;;;;19822:40;;19772:6;;;19789:17;19772:6;;19822:40;;19753:16;;19822:40;19742:128;19679:191;:::o;30956:708::-;-1:-1:-1;;;;;31087:18:0;;31079:68;;;;-1:-1:-1;;;31079:68:0;;8105:2:1;31079:68:0;;;8087:21:1;8144:2;8124:18;;;8117:30;8183:34;8163:18;;;8156:62;-1:-1:-1;;;8234:18:1;;;8227:35;8279:19;;31079:68:0;7903:401:1;31079:68:0;-1:-1:-1;;;;;31166:16:0;;31158:64;;;;-1:-1:-1;;;31158:64:0;;8511:2:1;31158:64:0;;;8493:21:1;8550:2;8530:18;;;8523:30;8589:34;8569:18;;;8562:62;-1:-1:-1;;;8640:18:1;;;8633:33;8683:19;;31158:64:0;8309:399:1;31158:64:0;-1:-1:-1;;;;;31308:15:0;;31286:19;31308:15;;;;;;;;;;;31356:21;;;;31334:109;;;;-1:-1:-1;;;31334:109:0;;8915:2:1;31334:109:0;;;8897:21:1;8954:2;8934:18;;;8927:30;8993:34;8973:18;;;8966:62;-1:-1:-1;;;9044:18:1;;;9037:36;9090:19;;31334:109:0;8713:402:1;31334:109:0;-1:-1:-1;;;;;31479:15:0;;;:9;:15;;;;;;;;;;;31497:20;;;31479:38;;31539:13;;;;;;;;:23;;31511:6;;31479:9;31539:23;;31511:6;;31539:23;:::i;:::-;;;;;;;;31595:2;-1:-1:-1;;;;;31580:26:0;31589:4;-1:-1:-1;;;;;31580:26:0;;31599:6;31580:26;;;;1361:25:1;;1349:2;1334:18;;1215:177;31580:26:0;;;;;;;;31619:37;38633:1821;40462:347;18445:6;;-1:-1:-1;;;;;40517:14:0;;;18445:6;;40517:14;;;;:29;;;40542:4;-1:-1:-1;;;;;40535:11:0;:3;-1:-1:-1;;;;;40535:11:0;;;40517:29;:55;;;;;40565:6;-1:-1:-1;;;;;40550:22:0;:3;-1:-1:-1;;;;;40550:22:0;;;40517:55;40513:289;;;40634:9;40615:29;;;;:18;:29;;;;;;40648:12;40615:45;;40589:142;;;;-1:-1:-1;;;40589:142:0;;9322:2:1;40589:142:0;;;9304:21:1;9361:2;9341:18;;;9334:30;9400:34;9380:18;;;9373:62;-1:-1:-1;;;9451:18:1;;;9444:33;9494:19;;40589:142:0;9120:399:1;40589:142:0;40765:9;40746:29;;;;:18;:29;;;;;40778:12;40746:44;;40462:347;:::o;41781:129::-;41863:5;;41852:7;:16;;41844:58;;;;-1:-1:-1;;;41844:58:0;;9726:2:1;41844:58:0;;;9708:21:1;9765:2;9745:18;;;9738:30;9804:31;9784:18;;;9777:59;9853:18;;41844:58:0;9524:353:1;41918:203:0;42052:9;;-1:-1:-1;;;;;26619:18:0;;26587:7;26619:18;;;;;;;;;;;42022:26;;:7;:26;:::i;:::-;:39;;42000:113;;;;-1:-1:-1;;;42000:113:0;;10084:2:1;42000:113:0;;;10066:21:1;10123:2;10103:18;;;10096:30;10162:26;10142:18;;;10135:54;10206:18;;42000:113:0;9882:348:1;42000:113:0;41918:203;;:::o;40817:217::-;40902:4;40858:23;26619:18;;;;;;;;;;;;40925:20;;;40921:59;;40962:7;40817:217::o;40921:59::-;40992:34;41010:15;40992:17;:34::i;13247:98::-;13305:7;13332:5;13336:1;13332;:5;:::i;:::-;13325:12;13247:98;-1:-1:-1;;;13247:98:0:o;13646:::-;13704:7;13731:5;13735:1;13731;:5;:::i;42129:524::-;42282:16;;;42296:1;42282:16;;;;;;;;42258:21;;42282:16;;;;;;;;;;-1:-1:-1;42282:16:0;42258:40;;42327:4;42309;42314:1;42309:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42309:23:0;;;-1:-1:-1;;;;;42309:23:0;;;;;42353:6;-1:-1:-1;;;;;42353:11:0;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42343:4;42348:1;42343:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42343:23:0;;;-1:-1:-1;;;;;42343:23:0;;;;;42379:54;42396:4;42411:6;42420:12;42379:8;:54::i;:::-;42588:15;;42446:199;;-1:-1:-1;;;42446:199:0;;-1:-1:-1;;;;;42446:6:0;:57;;;;;:199;;42518:12;;42545:1;;42561:4;;42588:15;;;;;42619;;42446:199;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2692:388::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;2876:9;2863:23;2895:31;2920:5;2895:31;:::i;:::-;2945:5;-1:-1:-1;3002:2:1;2987:18;;2974:32;3015:33;2974:32;3015:33;:::i;:::-;3067:7;3057:17;;;2692:388;;;;;:::o;3085:380::-;3164:1;3160:12;;;;3207;;;3228:61;;3282:4;3274:6;3270:17;3260:27;;3228:61;3335:2;3327:6;3324:14;3304:18;3301:38;3298:161;;3381:10;3376:3;3372:20;3369:1;3362:31;3416:4;3413:1;3406:15;3444:4;3441:1;3434:15;3298:161;;3085:380;;;:::o;3470:356::-;3672:2;3654:21;;;3691:18;;;3684:30;3750:34;3745:2;3730:18;;3723:62;3817:2;3802:18;;3470:356::o;3831:127::-;3892:10;3887:3;3883:20;3880:1;3873:31;3923:4;3920:1;3913:15;3947:4;3944:1;3937:15;3963:168;4003:7;4069:1;4065;4061:6;4057:14;4054:1;4051:21;4046:1;4039:9;4032:17;4028:45;4025:71;;;4076:18;;:::i;:::-;-1:-1:-1;4116:9:1;;3963:168::o;4901:125::-;4966:9;;;4987:10;;;4984:36;;;5000:18;;:::i;7770:128::-;7837:9;;;7858:11;;;7855:37;;;7872:18;;:::i;10235:217::-;10275:1;10301;10291:132;;10345:10;10340:3;10336:20;10333:1;10326:31;10380:4;10377:1;10370:15;10408:4;10405:1;10398:15;10291:132;-1:-1:-1;10437:9:1;;10235:217::o;10589:127::-;10650:10;10645:3;10641:20;10638:1;10631:31;10681:4;10678:1;10671:15;10705:4;10702:1;10695:15;10721:251;10791:6;10844:2;10832:9;10823:7;10819:23;10815:32;10812:52;;;10860:1;10857;10850:12;10812:52;10892:9;10886:16;10911:31;10936:5;10911:31;:::i;10977:980::-;11239:4;11287:3;11276:9;11272:19;11318:6;11307:9;11300:25;11344:2;11382:6;11377:2;11366:9;11362:18;11355:34;11425:3;11420:2;11409:9;11405:18;11398:31;11449:6;11484;11478:13;11515:6;11507;11500:22;11553:3;11542:9;11538:19;11531:26;;11592:2;11584:6;11580:15;11566:29;;11613:1;11623:195;11637:6;11634:1;11631:13;11623:195;;;11702:13;;-1:-1:-1;;;;;11698:39:1;11686:52;;11793:15;;;;11758:12;;;;11734:1;11652:9;11623:195;;;-1:-1:-1;;;;;;;11874:32:1;;;;11869:2;11854:18;;11847:60;-1:-1:-1;;;11938:3:1;11923:19;11916:35;11835:3;10977:980;-1:-1:-1;;;10977:980:1:o
Swarm Source
ipfs://1e4c9633c80e9a74c7d3c0cd9e51a770b0d770a919b0a3728742991495e6d234
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.