Latest 25 from a total of 1,874 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 65245166 | 5 days ago | IN | 0 POL | 0.00139551 | ||||
Approve | 64895509 | 14 days ago | IN | 0 POL | 0.00087498 | ||||
Transfer | 64780128 | 16 days ago | IN | 0 POL | 0.00175321 | ||||
Approve | 64768550 | 17 days ago | IN | 0 POL | 0.00422303 | ||||
Approve | 64558672 | 22 days ago | IN | 0 POL | 0.00866252 | ||||
Approve | 64558533 | 22 days ago | IN | 0 POL | 0.01630648 | ||||
Approve | 64540043 | 23 days ago | IN | 0 POL | 0.00349327 | ||||
Approve | 64536275 | 23 days ago | IN | 0 POL | 0.00216196 | ||||
Approve | 64532237 | 23 days ago | IN | 0 POL | 0.0018589 | ||||
Approve | 64532237 | 23 days ago | IN | 0 POL | 0.0018589 | ||||
Transfer | 64525602 | 23 days ago | IN | 0 POL | 0.0082694 | ||||
Approve | 64525527 | 23 days ago | IN | 0 POL | 0.00183973 | ||||
Approve | 64525526 | 23 days ago | IN | 0 POL | 0.00183785 | ||||
Approve | 64525237 | 23 days ago | IN | 0 POL | 0.00199373 | ||||
Approve | 64525237 | 23 days ago | IN | 0 POL | 0.00199373 | ||||
Approve | 64204817 | 31 days ago | IN | 0 POL | 0.00127078 | ||||
Approve | 64116071 | 33 days ago | IN | 0 POL | 0.01212413 | ||||
Approve | 64010195 | 36 days ago | IN | 0 POL | 0.00139011 | ||||
Approve | 63279982 | 54 days ago | IN | 0 POL | 0.00080206 | ||||
Approve | 63279980 | 54 days ago | IN | 0 POL | 0.00082638 | ||||
Approve | 63279978 | 54 days ago | IN | 0 POL | 0.00082843 | ||||
Approve | 63279932 | 54 days ago | IN | 0 POL | 0.00087498 | ||||
Approve | 63279887 | 54 days ago | IN | 0 POL | 0.00075394 | ||||
Approve | 62857480 | 64 days ago | IN | 0 POL | 0.00072915 | ||||
Approve | 62857478 | 64 days ago | IN | 0 POL | 0.00072915 |
Loading...
Loading
Contract Name:
MammothAI
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2024-01-18 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.19; /** * @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 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); } } /** * @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); } /** * @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}. * * * 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 {} } /// quickswap factory interface interface IFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); } /// quickswap Router interface interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function getAmountsOut( uint256 amountIn, address[] calldata path ) external view returns (uint256[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /// @title MammothAI: MAMAI contract MammothAI is ERC20, Ownable { /// @notice MAX SUPPLY 1 Billion MAMAI uint256 private constant MAX_SUPPLY = 1_000_000_000 * 1e18; /// @notice max buy per tx uint256 maxBuyAmountPerTx = MAX_SUPPLY / 100; /// @notice max sell per tx uint256 maxSellAmountPerTx = MAX_SUPPLY / 100; /// @notice marketing wallet address address public marketingWallet = address(0x57223AE3a704ED93629d08E54F967f550a1a8CB8); // your marketing wallet here /// @notice uniswapV2Router IUniswapRouter public immutable uniswapV2Router; /// @notice uniswapPair address public immutable uniswapPair; /// @notice buyFee uint256 public buyFee; /// @notice sellFee uint256 public sellFee; /// @notice swapping status bool swapping = false; /// @notice manage exclude / incclude from fees mapping(address => bool) isExcludedFromFees; /// errors error OnlyMarketingWallet(); error MaxBuyPerTxExceeds(); error MaxSellPerTxExceeds(); error MAX_FEE_LIMIT_EXCEEDS(); error MinOnePercent(); error ZeroAddress(); constructor() ERC20("MammothAI", "MAMAI") { uniswapV2Router = IUniswapRouter( 0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff ); //QUICKSWAP Router uniswapPair = IFactory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); buyFee = 25; // 2.5% sellFee = 25; // 2.5% isExcludedFromFees[owner()] = true; isExcludedFromFees[address(this)] = true; isExcludedFromFees[marketingWallet] = true; _mint(msg.sender, MAX_SUPPLY); } /// @dev claim any erc20 token, accidently sent to token contract /// @param token: token to rescue /// @param amount: amount to rescue /// Requirements - /// only marketing wallet can rescue stucked tokens function claimStuckedERC20(address token, uint256 amount) external { if (msg.sender != marketingWallet) { revert OnlyMarketingWallet(); } // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call( abi.encodeWithSelector(0xa9059cbb, marketingWallet, amount) ); require( success && (data.length == 0 || abi.decode(data, (bool))), "ERC20: TOKEN_CLAIM_FAILED" ); } /// @dev exclude or include a address from / to fees /// @param user: user address to exclude or include /// @param excluded: true to exclude, false to include function exlcudeFromFees(address user, bool excluded) external onlyOwner { isExcludedFromFees[user] = excluded; } /// @dev update max buy amount per tx globally /// @param _percent: pecent of total supply /// Requirements - /// must be 1 or more function updateBuyAmountPerTx(uint256 _percent) external onlyOwner { if (_percent < 1) { revert MinOnePercent(); } maxBuyAmountPerTx = (totalSupply() * _percent) / 100; } /// @dev update max sell amount per tx globally /// /// @param _percent: pecent of total supply /// Requirements - /// must be 1 or more function updateSellAmountPerTx(uint256 _percent) external onlyOwner { if (_percent < 1) { revert MinOnePercent(); } maxSellAmountPerTx = (totalSupply() * _percent) / 100; } /// @dev update buy and sell tax globally /// @param _buy: new buy tax /// @param _sell: new sell tax /// Requirements - /// max fees is 10 percent /// fee divisor is 1000, see line line 820, 829 /// so input of 10 == 1 percent /// 50 == 5 percent, 25 == 2.5 percent function updateTax( uint256 _buy, uint256 _sell ) external onlyOwner{ if(_buy > 100 || _sell > 100){ revert MAX_FEE_LIMIT_EXCEEDS(); } buyFee = _buy; sellFee = _sell; } /// @dev update marketing wallet /// @param _newMarketing: new marketing wallet address function setMarketingWallet (address _newMarketing) external onlyOwner { if(_newMarketing == address(0)){ revert ZeroAddress(); } marketingWallet = _newMarketing; } /// @notice manage token transfer and fees /// @dev See {ERC20-_transfer} function _transfer( address from, address to, uint256 amount ) internal override { bool takeFee = true; if (isExcludedFromFees[from] || isExcludedFromFees[to]) { takeFee = false; } if (takeFee) { uint256 fee; if (from == uniswapPair) { if (amount > maxBuyAmountPerTx) { revert MaxBuyPerTxExceeds(); } if (buyFee > 0) { fee = (amount * buyFee) / 1000; } } else if (to == uniswapPair) { if (amount > maxSellAmountPerTx) { revert MaxSellPerTxExceeds(); } if (sellFee > 0) { fee = (amount * sellFee) / 1000; } } amount = amount - fee; if (fee > 0) { super._transfer(from, address(this), fee); } } uint256 contractBalance = balanceOf(address(this)); bool canSwap = contractBalance >= 100e18 && from != uniswapPair && (!isExcludedFromFees[from]) && !swapping; if (canSwap) { swapping = true; swapTokensForMatic(contractBalance); swapping = false; } super._transfer(from, to, amount); } ///@notice swap the tax tokens for matic and send to marketing wallet function swapTokensForMatic(uint256 tokenAmount) private { // generate the uniswap pair path of token -> wmatic address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); if (allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve( address(this), address(uniswapV2Router), type(uint256).max ); } uint256 out = uniswapV2Router.getAmountsOut(tokenAmount, path)[1]; // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, (out * 80) / 100, //20% Slippage path, marketingWallet, block.timestamp + 360 ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MAX_FEE_LIMIT_EXCEEDS","type":"error"},{"inputs":[],"name":"MaxBuyPerTxExceeds","type":"error"},{"inputs":[],"name":"MaxSellPerTxExceeds","type":"error"},{"inputs":[],"name":"MinOnePercent","type":"error"},{"inputs":[],"name":"OnlyMarketingWallet","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"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":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimStuckedERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exlcudeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"updateBuyAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"updateSellAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buy","type":"uint256"},{"internalType":"uint256","name":"_sell","type":"uint256"}],"name":"updateTax","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526200001d60646b033b2e3c9fd0803ce800000062000422565b6006556200003960646b033b2e3c9fd0803ce800000062000422565b600755600880546001600160a01b0319167357223ae3a704ed93629d08e54f967f550a1a8cb8179055600b805460ff191690553480156200007957600080fd5b50604051806040016040528060098152602001684d616d6d6f7468414960b81b815250604051806040016040528060058152602001644d414d414960d81b8152508160039081620000cb9190620004e9565b506004620000da8282620004e9565b505050620000f7620000f16200030160201b60201c565b62000305565b73a5e0829caced8ffdd4de3c43696c57f7d7a678ff60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200014d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001739190620005b5565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e99190620005b5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d9190620005b5565b6001600160a01b031660a05260196009819055600a556001600c60006200028c6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600c909352818320805485166001908117909155600854909116835291208054909216179055620002fb336b033b2e3c9fd0803ce800000062000357565b6200060f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003b25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003c69190620005e7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200044057634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047057607f821691505b6020821081036200049157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200041d57600081815260208120601f850160051c81016020861015620004c05750805b601f850160051c820191505b81811015620004e157828155600101620004cc565b505050505050565b81516001600160401b0381111562000505576200050562000445565b6200051d816200051684546200045b565b8462000497565b602080601f8311600181146200055557600084156200053c5750858301515b600019600386901b1c1916600185901b178555620004e1565b600085815260208120601f198616915b82811015620005865788860151825594840194600190910190840162000565565b5085821015620005a55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005c857600080fd5b81516001600160a01b0381168114620005e057600080fd5b9392505050565b808201808211156200060957634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a0516115fe6200066d6000396000818161034d01528181610acf01528181610b560152610c1c0152600081816101d301528181610f0e01528181610fc801528181610ff80152818161103901526110d301526115fe6000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806347062402116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb14610335578063c816841b14610348578063dd62ed3e1461036f578063f2fde38b1461038257600080fd5b80638da5cb5b1461030957806395d89b411461031a578063a457c2d71461032257600080fd5b806347062402146102965780635d098b381461029f57806370a08231146102b2578063715018a6146102db57806375f0a874146102e35780637a20d3da146102f657600080fd5b806323b872dd1161013057806323b872dd146102325780632b14ca56146102455780632f37aa6d1461024e578063313ce5671461026157806335b1151314610270578063395093511461028357600080fd5b806306fdde0314610178578063095ea7b3146101965780630e3d3bc5146101b95780631694505e146101ce5780631706fbc51461020d57806318160ddd14610220575b600080fd5b610180610395565b60405161018d91906111af565b60405180910390f35b6101a96101a43660046111f7565b610427565b604051901515815260200161018d565b6101cc6101c7366004611223565b610441565b005b6101f57f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161018d565b6101cc61021b36600461124a565b610491565b6002545b60405190815260200161018d565b6101a9610240366004611283565b6104c4565b610224600a5481565b6101cc61025c3660046112c4565b6104e8565b6040516012815260200161018d565b6101cc61027e366004611223565b610528565b6101a96102913660046111f7565b610578565b61022460095481565b6101cc6102ad3660046112e6565b61059a565b6102246102c03660046112e6565b6001600160a01b031660009081526020819052604090205490565b6101cc6105eb565b6008546101f5906001600160a01b031681565b6101cc6103043660046111f7565b6105ff565b6005546001600160a01b03166101f5565b61018061074c565b6101a96103303660046111f7565b61075b565b6101a96103433660046111f7565b6107d6565b6101f57f000000000000000000000000000000000000000000000000000000000000000081565b61022461037d36600461130a565b6107e4565b6101cc6103903660046112e6565b61080f565b6060600380546103a490611338565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611338565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b600033610435818585610888565b60019150505b92915050565b6104496109ac565b600181101561046b5760405163f921e6df60e01b815260040160405180910390fd5b60648161047760025490565b6104819190611388565b61048b919061139f565b60075550565b6104996109ac565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000336104d2858285610a06565b6104dd858585610a7a565b506001949350505050565b6104f06109ac565b60648211806104ff5750606481115b1561051d57604051631255745b60e31b815260040160405180910390fd5b600991909155600a55565b6105306109ac565b60018110156105525760405163f921e6df60e01b815260040160405180910390fd5b60648161055e60025490565b6105689190611388565b610572919061139f565b60065550565b60003361043581858561058b83836107e4565b61059591906113c1565b610888565b6105a26109ac565b6001600160a01b0381166105c95760405163d92e233d60e01b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6105f36109ac565b6105fd6000610cc1565b565b6008546001600160a01b0316331461062a5760405163e734c0b760e01b815260040160405180910390fd5b600854604080516001600160a01b039283166024820152604480820185905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b179052905160009283929086169161068991906113d4565b6000604051808303816000865af19150503d80600081146106c6576040519150601f19603f3d011682016040523d82523d6000602084013e6106cb565b606091505b50915091508180156106f55750805115806106f55750808060200190518101906106f591906113f0565b6107465760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6060600480546103a490611338565b6000338161076982866107e4565b9050838110156107c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161073d565b6104dd8286868403610888565b600033610435818585610a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108176109ac565b6001600160a01b03811661087c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61088581610cc1565b50565b6001600160a01b0383166108ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b6001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161073d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161073d565b6000610a1284846107e4565b905060001981146107465781811015610a6d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161073d565b6107468484848403610888565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610abc57506001600160a01b0383166000908152600c602052604090205460ff165b15610ac5575060005b8015610bf55760007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031603610b5457600654831115610b295760405163acdd04e360e01b815260040160405180910390fd5b60095415610b4f576103e860095484610b429190611388565b610b4c919061139f565b90505b610bd6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031603610bd657600754831115610bb057604051630992619960e31b815260040160405180910390fd5b600a5415610bd6576103e8600a5484610bc99190611388565b610bd3919061139f565b90505b610be0818461140d565b92508015610bf357610bf3853083610d13565b505b306000908152602081905260408120549068056bc75e2d631000008210801590610c5157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b8015610c7657506001600160a01b0386166000908152600c602052604090205460ff16155b8015610c855750600b5460ff16155b90508015610cae57600b805460ff19166001179055610ca382610eb7565b600b805460ff191690555b610cb9868686610d13565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161073d565b6001600160a01b038216610dd95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161073d565b6001600160a01b03831660009081526020819052604090205481811015610e515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161073d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610746565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610eec57610eec611436565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8e919061144c565b81600181518110610fa157610fa1611436565b60200260200101906001600160a01b031690816001600160a01b03168152505081610fec307f00000000000000000000000000000000000000000000000000000000000000006107e4565b101561101f5761101f307f0000000000000000000000000000000000000000000000000000000000000000600019610888565b60405163d06ca61f60e01b81526000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d06ca61f9061107090869086906004016114ad565b600060405180830381865afa15801561108d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110b591908101906114ce565b6001815181106110c7576110c7611436565b602002602001015190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663791ac9478460648460506111109190611388565b61111a919061139f565b60085486906001600160a01b0316611134426101686113c1565b6040518663ffffffff1660e01b815260040161115495949392919061158c565b600060405180830381600087803b15801561116e57600080fd5b505af1158015611182573d6000803e3d6000fd5b50505050505050565b60005b838110156111a657818101518382015260200161118e565b50506000910152565b60208152600082518060208401526111ce81604085016020870161118b565b601f01601f19169190910160400192915050565b6001600160a01b038116811461088557600080fd5b6000806040838503121561120a57600080fd5b8235611215816111e2565b946020939093013593505050565b60006020828403121561123557600080fd5b5035919050565b801515811461088557600080fd5b6000806040838503121561125d57600080fd5b8235611268816111e2565b915060208301356112788161123c565b809150509250929050565b60008060006060848603121561129857600080fd5b83356112a3816111e2565b925060208401356112b3816111e2565b929592945050506040919091013590565b600080604083850312156112d757600080fd5b50508035926020909101359150565b6000602082840312156112f857600080fd5b8135611303816111e2565b9392505050565b6000806040838503121561131d57600080fd5b8235611328816111e2565b91506020830135611278816111e2565b600181811c9082168061134c57607f821691505b60208210810361136c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761043b5761043b611372565b6000826113bc57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561043b5761043b611372565b600082516113e681846020870161118b565b9190910192915050565b60006020828403121561140257600080fd5b81516113038161123c565b8181038181111561043b5761043b611372565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561145e57600080fd5b8151611303816111e2565b600081518084526020808501945080840160005b838110156114a25781516001600160a01b03168752958201959082019060010161147d565b509495945050505050565b8281526040602082015260006114c66040830184611469565b949350505050565b600060208083850312156114e157600080fd5b825167ffffffffffffffff808211156114f957600080fd5b818501915085601f83011261150d57600080fd5b81518181111561151f5761151f611420565b8060051b604051601f19603f8301168101818110858211171561154457611544611420565b60405291825284820192508381018501918883111561156257600080fd5b938501935b8285101561158057845184529385019392850192611567565b98975050505050505050565b85815284602082015260a0604082015260006115ab60a0830186611469565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212204c8fe0443d5efa80c9701f037a8b1b725b372779913996d26e6ac9a6539ccb0f64736f6c63430008130033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c806347062402116100de5780638da5cb5b11610097578063a9059cbb11610071578063a9059cbb14610335578063c816841b14610348578063dd62ed3e1461036f578063f2fde38b1461038257600080fd5b80638da5cb5b1461030957806395d89b411461031a578063a457c2d71461032257600080fd5b806347062402146102965780635d098b381461029f57806370a08231146102b2578063715018a6146102db57806375f0a874146102e35780637a20d3da146102f657600080fd5b806323b872dd1161013057806323b872dd146102325780632b14ca56146102455780632f37aa6d1461024e578063313ce5671461026157806335b1151314610270578063395093511461028357600080fd5b806306fdde0314610178578063095ea7b3146101965780630e3d3bc5146101b95780631694505e146101ce5780631706fbc51461020d57806318160ddd14610220575b600080fd5b610180610395565b60405161018d91906111af565b60405180910390f35b6101a96101a43660046111f7565b610427565b604051901515815260200161018d565b6101cc6101c7366004611223565b610441565b005b6101f57f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff81565b6040516001600160a01b03909116815260200161018d565b6101cc61021b36600461124a565b610491565b6002545b60405190815260200161018d565b6101a9610240366004611283565b6104c4565b610224600a5481565b6101cc61025c3660046112c4565b6104e8565b6040516012815260200161018d565b6101cc61027e366004611223565b610528565b6101a96102913660046111f7565b610578565b61022460095481565b6101cc6102ad3660046112e6565b61059a565b6102246102c03660046112e6565b6001600160a01b031660009081526020819052604090205490565b6101cc6105eb565b6008546101f5906001600160a01b031681565b6101cc6103043660046111f7565b6105ff565b6005546001600160a01b03166101f5565b61018061074c565b6101a96103303660046111f7565b61075b565b6101a96103433660046111f7565b6107d6565b6101f57f00000000000000000000000071501ff5a016a9a4518082ad3ea1d4f8c1ac41a481565b61022461037d36600461130a565b6107e4565b6101cc6103903660046112e6565b61080f565b6060600380546103a490611338565b80601f01602080910402602001604051908101604052809291908181526020018280546103d090611338565b801561041d5780601f106103f25761010080835404028352916020019161041d565b820191906000526020600020905b81548152906001019060200180831161040057829003601f168201915b5050505050905090565b600033610435818585610888565b60019150505b92915050565b6104496109ac565b600181101561046b5760405163f921e6df60e01b815260040160405180910390fd5b60648161047760025490565b6104819190611388565b61048b919061139f565b60075550565b6104996109ac565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000336104d2858285610a06565b6104dd858585610a7a565b506001949350505050565b6104f06109ac565b60648211806104ff5750606481115b1561051d57604051631255745b60e31b815260040160405180910390fd5b600991909155600a55565b6105306109ac565b60018110156105525760405163f921e6df60e01b815260040160405180910390fd5b60648161055e60025490565b6105689190611388565b610572919061139f565b60065550565b60003361043581858561058b83836107e4565b61059591906113c1565b610888565b6105a26109ac565b6001600160a01b0381166105c95760405163d92e233d60e01b815260040160405180910390fd5b600880546001600160a01b0319166001600160a01b0392909216919091179055565b6105f36109ac565b6105fd6000610cc1565b565b6008546001600160a01b0316331461062a5760405163e734c0b760e01b815260040160405180910390fd5b600854604080516001600160a01b039283166024820152604480820185905282518083039091018152606490910182526020810180516001600160e01b031663a9059cbb60e01b179052905160009283929086169161068991906113d4565b6000604051808303816000865af19150503d80600081146106c6576040519150601f19603f3d011682016040523d82523d6000602084013e6106cb565b606091505b50915091508180156106f55750805115806106f55750808060200190518101906106f591906113f0565b6107465760405162461bcd60e51b815260206004820152601960248201527f45524332303a20544f4b454e5f434c41494d5f4641494c45440000000000000060448201526064015b60405180910390fd5b50505050565b6060600480546103a490611338565b6000338161076982866107e4565b9050838110156107c95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161073d565b6104dd8286868403610888565b600033610435818585610a7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6108176109ac565b6001600160a01b03811661087c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61088581610cc1565b50565b6001600160a01b0383166108ea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161073d565b6001600160a01b03821661094b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161073d565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105fd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161073d565b6000610a1284846107e4565b905060001981146107465781811015610a6d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161073d565b6107468484848403610888565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610abc57506001600160a01b0383166000908152600c602052604090205460ff165b15610ac5575060005b8015610bf55760007f00000000000000000000000071501ff5a016a9a4518082ad3ea1d4f8c1ac41a46001600160a01b0316856001600160a01b031603610b5457600654831115610b295760405163acdd04e360e01b815260040160405180910390fd5b60095415610b4f576103e860095484610b429190611388565b610b4c919061139f565b90505b610bd6565b7f00000000000000000000000071501ff5a016a9a4518082ad3ea1d4f8c1ac41a46001600160a01b0316846001600160a01b031603610bd657600754831115610bb057604051630992619960e31b815260040160405180910390fd5b600a5415610bd6576103e8600a5484610bc99190611388565b610bd3919061139f565b90505b610be0818461140d565b92508015610bf357610bf3853083610d13565b505b306000908152602081905260408120549068056bc75e2d631000008210801590610c5157507f00000000000000000000000071501ff5a016a9a4518082ad3ea1d4f8c1ac41a46001600160a01b0316866001600160a01b031614155b8015610c7657506001600160a01b0386166000908152600c602052604090205460ff16155b8015610c855750600b5460ff16155b90508015610cae57600b805460ff19166001179055610ca382610eb7565b600b805460ff191690555b610cb9868686610d13565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316610d775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161073d565b6001600160a01b038216610dd95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161073d565b6001600160a01b03831660009081526020819052604090205481811015610e515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161073d565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610746565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110610eec57610eec611436565b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8e919061144c565b81600181518110610fa157610fa1611436565b60200260200101906001600160a01b031690816001600160a01b03168152505081610fec307f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff6107e4565b101561101f5761101f307f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff600019610888565b60405163d06ca61f60e01b81526000906001600160a01b037f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff169063d06ca61f9061107090869086906004016114ad565b600060405180830381865afa15801561108d573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526110b591908101906114ce565b6001815181106110c7576110c7611436565b602002602001015190507f000000000000000000000000a5e0829caced8ffdd4de3c43696c57f7d7a678ff6001600160a01b031663791ac9478460648460506111109190611388565b61111a919061139f565b60085486906001600160a01b0316611134426101686113c1565b6040518663ffffffff1660e01b815260040161115495949392919061158c565b600060405180830381600087803b15801561116e57600080fd5b505af1158015611182573d6000803e3d6000fd5b50505050505050565b60005b838110156111a657818101518382015260200161118e565b50506000910152565b60208152600082518060208401526111ce81604085016020870161118b565b601f01601f19169190910160400192915050565b6001600160a01b038116811461088557600080fd5b6000806040838503121561120a57600080fd5b8235611215816111e2565b946020939093013593505050565b60006020828403121561123557600080fd5b5035919050565b801515811461088557600080fd5b6000806040838503121561125d57600080fd5b8235611268816111e2565b915060208301356112788161123c565b809150509250929050565b60008060006060848603121561129857600080fd5b83356112a3816111e2565b925060208401356112b3816111e2565b929592945050506040919091013590565b600080604083850312156112d757600080fd5b50508035926020909101359150565b6000602082840312156112f857600080fd5b8135611303816111e2565b9392505050565b6000806040838503121561131d57600080fd5b8235611328816111e2565b91506020830135611278816111e2565b600181811c9082168061134c57607f821691505b60208210810361136c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761043b5761043b611372565b6000826113bc57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111561043b5761043b611372565b600082516113e681846020870161118b565b9190910192915050565b60006020828403121561140257600080fd5b81516113038161123c565b8181038181111561043b5761043b611372565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60006020828403121561145e57600080fd5b8151611303816111e2565b600081518084526020808501945080840160005b838110156114a25781516001600160a01b03168752958201959082019060010161147d565b509495945050505050565b8281526040602082015260006114c66040830184611469565b949350505050565b600060208083850312156114e157600080fd5b825167ffffffffffffffff808211156114f957600080fd5b818501915085601f83011261150d57600080fd5b81518181111561151f5761151f611420565b8060051b604051601f19603f8301168101818110858211171561154457611544611420565b60405291825284820192508381018501918883111561156257600080fd5b938501935b8285101561158057845184529385019392850192611567565b98975050505050505050565b85815284602082015260a0604082015260006115ab60a0830186611469565b6001600160a01b039490941660608301525060800152939250505056fea26469706673582212204c8fe0443d5efa80c9701f037a8b1b725b372779913996d26e6ac9a6539ccb0f64736f6c63430008130033
Deployed Bytecode Sourcemap
20759:7051:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8542:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10968:226;;;;;;:::i;:::-;;:::i;:::-;;;1291:14:1;;1284:22;1266:41;;1254:2;1239:18;10968:226:0;1126:187:1;24121:217:0;;;;;;:::i;:::-;;:::i;:::-;;21281:47;;;;;;;;-1:-1:-1;;;;;1689:32:1;;;1671:51;;1659:2;1644:18;21281:47:0;1503:225:1;23452:127:0;;;;;;:::i;:::-;;:::i;9671:108::-;9759:12;;9671:108;;;2389:25:1;;;2377:2;2362:18;9671:108:0;2243:177:1;11774:295:0;;;;;;:::i;:::-;;:::i;21492:22::-;;;;;;24663:243;;;;;;:::i;:::-;;:::i;9513:93::-;;;9596:2;3281:36:1;;3269:2;3254:18;9513:93:0;3139:184:1;23740:215:0;;;;;;:::i;:::-;;:::i;12478:263::-;;;;;;:::i;:::-;;:::i;21439:21::-;;;;;;25017:212;;;;;;:::i;:::-;;:::i;9842:143::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9959:18:0;9932:7;9959:18;;;;;;;;;;;;9842:143;2557:103;;;:::i;21122:84::-;;;;;-1:-1:-1;;;;;21122:84:0;;;22742:527;;;;;;:::i;:::-;;:::i;1916:87::-;1989:6;;-1:-1:-1;;;;;1989:6:0;1916:87;;8761:104;;;:::i;13244:498::-;;;;;;:::i;:::-;;:::i;10191:218::-;;;;;;:::i;:::-;;:::i;21364:36::-;;;;;10472:176;;;;;;:::i;:::-;;:::i;2815:238::-;;;;;;:::i;:::-;;:::i;8542:100::-;8596:13;8629:5;8622:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8542:100;:::o;10968:226::-;11076:4;680:10;11132:32;680:10;11148:7;11157:6;11132:8;:32::i;:::-;11182:4;11175:11;;;10968:226;;;;;:::o;24121:217::-;1802:13;:11;:13::i;:::-;24215:1:::1;24204:8;:12;24200:67;;;24240:15;;-1:-1:-1::0;;;24240:15:0::1;;;;;;;;;;;24200:67;24327:3;24315:8;24299:13;9759:12:::0;;;9671:108;24299:13:::1;:24;;;;:::i;:::-;24298:32;;;;:::i;:::-;24277:18;:53:::0;-1:-1:-1;24121:217:0:o;23452:127::-;1802:13;:11;:13::i;:::-;-1:-1:-1;;;;;23536:24:0;;;::::1;;::::0;;;:18:::1;:24;::::0;;;;:35;;-1:-1:-1;;23536:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;23452:127::o;11774:295::-;11905:4;680:10;11963:38;11979:4;680:10;11994:6;11963:15;:38::i;:::-;12012:27;12022:4;12028:2;12032:6;12012:9;:27::i;:::-;-1:-1:-1;12057:4:0;;11774:295;-1:-1:-1;;;;11774:295:0:o;24663:243::-;1802:13;:11;:13::i;:::-;24775:3:::1;24768:4;:10;:25;;;;24790:3;24782:5;:11;24768:25;24765:86;;;24816:23;;-1:-1:-1::0;;;24816:23:0::1;;;;;;;;;;;24765:86;24860:6;:13:::0;;;;24883:7:::1;:15:::0;24663:243::o;23740:215::-;1802:13;:11;:13::i;:::-;23833:1:::1;23822:8;:12;23818:67;;;23858:15;;-1:-1:-1::0;;;23858:15:0::1;;;;;;;;;;;23818:67;23944:3;23932:8;23916:13;9759:12:::0;;;9671:108;23916:13:::1;:24;;;;:::i;:::-;23915:32;;;;:::i;:::-;23895:17;:52:::0;-1:-1:-1;23740:215:0:o;12478:263::-;12591:4;680:10;12647:64;680:10;12663:7;12700:10;12672:25;680:10;12663:7;12672:9;:25::i;:::-;:38;;;;:::i;:::-;12647:8;:64::i;25017:212::-;1802:13;:11;:13::i;:::-;-1:-1:-1;;;;;25103:27:0;::::1;25100:79;;25153:13;;-1:-1:-1::0;;;25153:13:0::1;;;;;;;;;;;25100:79;25190:15;:31:::0;;-1:-1:-1;;;;;;25190:31:0::1;-1:-1:-1::0;;;;;25190:31:0;;;::::1;::::0;;;::::1;::::0;;25017:212::o;2557:103::-;1802:13;:11;:13::i;:::-;2622:30:::1;2649:1;2622:18;:30::i;:::-;2557:103::o:0;22742:527::-;22838:15;;-1:-1:-1;;;;;22838:15:0;22824:10;:29;22820:90;;22877:21;;-1:-1:-1;;;22877:21:0;;;;;;;;;;;22820:90;23083:15;;23048:59;;;-1:-1:-1;;;;;23083:15:0;;;23048:59;;;5397:51:1;5464:18;;;;5457:34;;;23048:59:0;;;;;;;;;;5370:18:1;;;;23048:59:0;;;;;;;-1:-1:-1;;;;;23048:59:0;-1:-1:-1;;;23048:59:0;;;23023:95;;-1:-1:-1;;;;23023:10:0;;;;:95;;23048:59;23023:95;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22987:131;;;;23151:7;:57;;;;-1:-1:-1;23163:11:0;;:16;;:44;;;23194:4;23183:24;;;;;;;;;;;;:::i;:::-;23129:132;;;;-1:-1:-1;;;23129:132:0;;6246:2:1;23129:132:0;;;6228:21:1;6285:2;6265:18;;;6258:30;6324:27;6304:18;;;6297:55;6369:18;;23129:132:0;;;;;;;;;22809:460;;22742:527;;:::o;8761:104::-;8817:13;8850:7;8843:14;;;;;:::i;13244:498::-;13362:4;680:10;13362:4;13445:25;680:10;13462:7;13445:9;:25::i;:::-;13418:52;;13523:15;13503:16;:35;;13481:122;;;;-1:-1:-1;;;13481:122:0;;6600:2:1;13481:122:0;;;6582:21:1;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:1;;;6722:35;6774:19;;13481:122:0;6398:401:1;13481:122:0;13639:60;13648:5;13655:7;13683:15;13664:16;:34;13639:8;:60::i;10191:218::-;10295:4;680:10;10351:28;680:10;10368:2;10372:6;10351:9;:28::i;10472:176::-;-1:-1:-1;;;;;10613:18:0;;;10586:7;10613:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10472:176::o;2815:238::-;1802:13;:11;:13::i;:::-;-1:-1:-1;;;;;2918:22:0;::::1;2896:110;;;::::0;-1:-1:-1;;;2896:110:0;;7006:2:1;2896:110:0::1;::::0;::::1;6988:21:1::0;7045:2;7025:18;;;7018:30;7084:34;7064:18;;;7057:62;-1:-1:-1;;;7135:18:1;;;7128:36;7181:19;;2896:110:0::1;6804:402:1::0;2896:110:0::1;3017:28;3036:8;3017:18;:28::i;:::-;2815:238:::0;:::o;17370:380::-;-1:-1:-1;;;;;17506:19:0;;17498:68;;;;-1:-1:-1;;;17498:68:0;;7413:2:1;17498:68:0;;;7395:21:1;7452:2;7432:18;;;7425:30;7491:34;7471:18;;;7464:62;-1:-1:-1;;;7542:18:1;;;7535:34;7586:19;;17498:68:0;7211:400:1;17498:68:0;-1:-1:-1;;;;;17585:21:0;;17577:68;;;;-1:-1:-1;;;17577:68:0;;7818:2:1;17577:68:0;;;7800:21:1;7857:2;7837:18;;;7830:30;7896:34;7876:18;;;7869:62;-1:-1:-1;;;7947:18:1;;;7940:32;7989:19;;17577:68:0;7616:398:1;17577:68:0;-1:-1:-1;;;;;17658:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17710:32;;2389:25:1;;;17710:32:0;;2362:18:1;17710:32:0;;;;;;;17370:380;;;:::o;2081:132::-;1989:6;;-1:-1:-1;;;;;1989:6:0;680:10;2145:23;2137:68;;;;-1:-1:-1;;;2137:68:0;;8221:2:1;2137:68:0;;;8203:21:1;;;8240:18;;;8233:30;8299:34;8279:18;;;8272:62;8351:18;;2137:68:0;8019:356:1;18041:502:0;18176:24;18203:25;18213:5;18220:7;18203:9;:25::i;:::-;18176:52;;-1:-1:-1;;18243:16:0;:37;18239:297;;18343:6;18323:16;:26;;18297:117;;;;-1:-1:-1;;;18297:117:0;;8582:2:1;18297:117:0;;;8564:21:1;8621:2;8601:18;;;8594:30;8660:31;8640:18;;;8633:59;8709:18;;18297:117:0;8380:353:1;18297:117:0;18458:51;18467:5;18474:7;18502:6;18483:16;:25;18458:8;:51::i;25321:1540::-;-1:-1:-1;;;;;25479:24:0;;25445:12;25479:24;;;:18;:24;;;;;;25460:4;;25479:24;;;:50;;-1:-1:-1;;;;;;25507:22:0;;;;;;:18;:22;;;;;;;;25479:50;25475:98;;;-1:-1:-1;25556:5:0;25475:98;25589:7;25585:857;;;25613:11;25664;-1:-1:-1;;;;;25656:19:0;:4;-1:-1:-1;;;;;25656:19:0;;25652:624;;25709:17;;25700:6;:26;25696:102;;;25758:20;;-1:-1:-1;;;25758:20:0;;;;;;;;;;;25696:102;25838:6;;:10;25834:111;;25899:4;25889:6;;25880;:15;;;;:::i;:::-;25879:24;;;;:::i;:::-;25873:30;;25834:111;25652:624;;;25976:11;-1:-1:-1;;;;;25970:17:0;:2;-1:-1:-1;;;;;25970:17:0;;25966:310;;26021:18;;26012:6;:27;26008:104;;;26071:21;;-1:-1:-1;;;26071:21:0;;;;;;;;;;;26008:104;26152:7;;:11;26148:113;;26215:4;26204:7;;26195:6;:16;;;;:::i;:::-;26194:25;;;;:::i;:::-;26188:31;;26148:113;26301:12;26310:3;26301:6;:12;:::i;:::-;26292:21;-1:-1:-1;26332:7:0;;26328:89;;26360:41;26376:4;26390;26397:3;26360:15;:41::i;:::-;25598:844;25585:857;26496:4;26452:23;9959:18;;;;;;;;;;;;26549:6;26530:25;;;;;:61;;;26580:11;-1:-1:-1;;;;;26572:19:0;:4;-1:-1:-1;;;;;26572:19:0;;;26530:61;:105;;;;-1:-1:-1;;;;;;26610:24:0;;;;;;:18;:24;;;;;;;;26609:25;26530:105;:131;;;;-1:-1:-1;26653:8:0;;;;26652:9;26530:131;26515:146;;26676:7;26672:136;;;26700:8;:15;;-1:-1:-1;;26700:15:0;26711:4;26700:15;;;26730:35;26749:15;26730:18;:35::i;:::-;26780:8;:16;;-1:-1:-1;;26780:16:0;;;26672:136;26820:33;26836:4;26842:2;26846:6;26820:15;:33::i;:::-;25434:1427;;;25321:1540;;;:::o;3213:191::-;3306:6;;;-1:-1:-1;;;;;3323:17:0;;;-1:-1:-1;;;;;;3323:17:0;;;;;;;3356:40;;3306:6;;;3323:17;3306:6;;3356:40;;3287:16;;3356:40;3276:128;3213:191;:::o;14212:877::-;-1:-1:-1;;;;;14343:18:0;;14335:68;;;;-1:-1:-1;;;14335:68:0;;9073:2:1;14335:68:0;;;9055:21:1;9112:2;9092:18;;;9085:30;9151:34;9131:18;;;9124:62;-1:-1:-1;;;9202:18:1;;;9195:35;9247:19;;14335:68:0;8871:401:1;14335:68:0;-1:-1:-1;;;;;14422:16:0;;14414:64;;;;-1:-1:-1;;;14414:64:0;;9479:2:1;14414:64:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:33;9651:19;;14414:64:0;9277:399:1;14414:64:0;-1:-1:-1;;;;;14564:15:0;;14542:19;14564:15;;;;;;;;;;;14612:21;;;;14590:109;;;;-1:-1:-1;;;14590:109:0;;9883:2:1;14590:109:0;;;9865:21:1;9922:2;9902:18;;;9895:30;9961:34;9941:18;;;9934:62;-1:-1:-1;;;10012:18:1;;;10005:36;10058:19;;14590:109:0;9681:402:1;14590:109:0;-1:-1:-1;;;;;14735:15:0;;;:9;:15;;;;;;;;;;;14753:20;;;14735:38;;14953:13;;;;;;;;;;:23;;;;;;15005:26;;2389:25:1;;;14953:13:0;;15005:26;;2362:18:1;15005:26:0;;;;;;;15044:37;19143:125;26952:847;27106:16;;;27120:1;27106:16;;;;;;;;27082:21;;27106:16;;;;;;;;;;-1:-1:-1;27106:16:0;27082:40;;27151:4;27133;27138:1;27133:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27133:23:0;;;-1:-1:-1;;;;;27133:23:0;;;;;27177:15;-1:-1:-1;;;;;27177:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27167:4;27172:1;27167:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;27167:32:0;;;-1:-1:-1;;;;;27167:32:0;;;;;27269:11;27216:50;27234:4;27249:15;27216:9;:50::i;:::-;:64;27212:231;;;27297:134;27332:4;27364:15;-1:-1:-1;;27297:8:0;:134::i;:::-;27469:48;;-1:-1:-1;;;27469:48:0;;27455:11;;-1:-1:-1;;;;;27469:15:0;:29;;;;:48;;27499:11;;27512:4;;27469:48;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;27469:48:0;;;;;;;;;;;;:::i;:::-;27518:1;27469:51;;;;;;;;:::i;:::-;;;;;;;27455:65;;27557:15;-1:-1:-1;;;;;27557:66:0;;27638:11;27677:3;27665;27671:2;27665:8;;;;:::i;:::-;27664:16;;;;:::i;:::-;27729:15;;27710:4;;-1:-1:-1;;;;;27729:15:0;27759:21;:15;27777:3;27759:21;:::i;:::-;27557:234;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27009:790;;26952:847;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:131::-;-1:-1:-1;;;;;745:31:1;;735:42;;725:70;;791:1;788;781:12;806:315;874:6;882;935:2;923:9;914:7;910:23;906:32;903:52;;;951:1;948;941:12;903:52;990:9;977:23;1009:31;1034:5;1009:31;:::i;:::-;1059:5;1111:2;1096:18;;;;1083:32;;-1:-1:-1;;;806:315:1:o;1318:180::-;1377:6;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;-1:-1:-1;1469:23:1;;1318:180;-1:-1:-1;1318:180:1:o;1733:118::-;1819:5;1812:13;1805:21;1798:5;1795:32;1785:60;;1841:1;1838;1831:12;1856:382;1921:6;1929;1982:2;1970:9;1961:7;1957:23;1953:32;1950:52;;;1998:1;1995;1988:12;1950:52;2037:9;2024:23;2056:31;2081:5;2056:31;:::i;:::-;2106:5;-1:-1:-1;2163:2:1;2148:18;;2135:32;2176:30;2135:32;2176:30;:::i;:::-;2225:7;2215:17;;;1856:382;;;;;:::o;2425:456::-;2502:6;2510;2518;2571:2;2559:9;2550:7;2546:23;2542:32;2539:52;;;2587:1;2584;2577:12;2539:52;2626:9;2613:23;2645:31;2670:5;2645:31;:::i;:::-;2695:5;-1:-1:-1;2752:2:1;2737:18;;2724:32;2765:33;2724:32;2765:33;:::i;:::-;2425:456;;2817:7;;-1:-1:-1;;;2871:2:1;2856:18;;;;2843:32;;2425:456::o;2886:248::-;2954:6;2962;3015:2;3003:9;2994:7;2990:23;2986:32;2983:52;;;3031:1;3028;3021:12;2983:52;-1:-1:-1;;3054:23:1;;;3124:2;3109:18;;;3096:32;;-1:-1:-1;2886:248:1:o;3328:247::-;3387:6;3440:2;3428:9;3419:7;3415:23;3411:32;3408:52;;;3456:1;3453;3446:12;3408:52;3495:9;3482:23;3514:31;3539:5;3514:31;:::i;:::-;3564:5;3328:247;-1:-1:-1;;;3328:247:1:o;3788:388::-;3856:6;3864;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3972:9;3959:23;3991:31;4016:5;3991:31;:::i;:::-;4041:5;-1:-1:-1;4098:2:1;4083:18;;4070:32;4111:33;4070:32;4111:33;:::i;4181:380::-;4260:1;4256:12;;;;4303;;;4324:61;;4378:4;4370:6;4366:17;4356:27;;4324:61;4431:2;4423:6;4420:14;4400:18;4397:38;4394:161;;4477:10;4472:3;4468:20;4465:1;4458:31;4512:4;4509:1;4502:15;4540:4;4537:1;4530:15;4394:161;;4181:380;;;:::o;4566:127::-;4627:10;4622:3;4618:20;4615:1;4608:31;4658:4;4655:1;4648:15;4682:4;4679:1;4672:15;4698:168;4771:9;;;4802;;4819:15;;;4813:22;;4799:37;4789:71;;4840:18;;:::i;4871:217::-;4911:1;4937;4927:132;;4981:10;4976:3;4972:20;4969:1;4962:31;5016:4;5013:1;5006:15;5044:4;5041:1;5034:15;4927:132;-1:-1:-1;5073:9:1;;4871:217::o;5093:125::-;5158:9;;;5179:10;;;5176:36;;;5192:18;;:::i;5502:287::-;5631:3;5669:6;5663:13;5685:66;5744:6;5739:3;5732:4;5724:6;5720:17;5685:66;:::i;:::-;5767:16;;;;;5502:287;-1:-1:-1;;5502:287:1:o;5794:245::-;5861:6;5914:2;5902:9;5893:7;5889:23;5885:32;5882:52;;;5930:1;5927;5920:12;5882:52;5962:9;5956:16;5981:28;6003:5;5981:28;:::i;8738:128::-;8805:9;;;8826:11;;;8823:37;;;8840:18;;:::i;10088:127::-;10149:10;10144:3;10140:20;10137:1;10130:31;10180:4;10177:1;10170:15;10204:4;10201:1;10194:15;10220:127;10281:10;10276:3;10272:20;10269:1;10262:31;10312:4;10309:1;10302:15;10336:4;10333:1;10326:15;10352:251;10422:6;10475:2;10463:9;10454:7;10450:23;10446:32;10443:52;;;10491:1;10488;10481:12;10443:52;10523:9;10517:16;10542:31;10567:5;10542:31;:::i;10608:461::-;10661:3;10699:5;10693:12;10726:6;10721:3;10714:19;10752:4;10781:2;10776:3;10772:12;10765:19;;10818:2;10811:5;10807:14;10839:1;10849:195;10863:6;10860:1;10857:13;10849:195;;;10928:13;;-1:-1:-1;;;;;10924:39:1;10912:52;;10984:12;;;;11019:15;;;;10960:1;10878:9;10849:195;;;-1:-1:-1;11060:3:1;;10608:461;-1:-1:-1;;;;;10608:461:1:o;11074:332::-;11281:6;11270:9;11263:25;11324:2;11319;11308:9;11304:18;11297:30;11244:4;11344:56;11396:2;11385:9;11381:18;11373:6;11344:56;:::i;:::-;11336:64;11074:332;-1:-1:-1;;;;11074:332:1:o;11411:1105::-;11506:6;11537:2;11580;11568:9;11559:7;11555:23;11551:32;11548:52;;;11596:1;11593;11586:12;11548:52;11629:9;11623:16;11658:18;11699:2;11691:6;11688:14;11685:34;;;11715:1;11712;11705:12;11685:34;11753:6;11742:9;11738:22;11728:32;;11798:7;11791:4;11787:2;11783:13;11779:27;11769:55;;11820:1;11817;11810:12;11769:55;11849:2;11843:9;11871:2;11867;11864:10;11861:36;;;11877:18;;:::i;:::-;11923:2;11920:1;11916:10;11955:2;11949:9;12018:2;12014:7;12009:2;12005;12001:11;11997:25;11989:6;11985:38;12073:6;12061:10;12058:22;12053:2;12041:10;12038:18;12035:46;12032:72;;;12084:18;;:::i;:::-;12120:2;12113:22;12170:18;;;12204:15;;;;-1:-1:-1;12246:11:1;;;12242:20;;;12274:19;;;12271:39;;;12306:1;12303;12296:12;12271:39;12330:11;;;;12350:135;12366:6;12361:3;12358:15;12350:135;;;12432:10;;12420:23;;12383:12;;;;12463;;;;12350:135;;;12504:6;11411:1105;-1:-1:-1;;;;;;;;11411:1105:1:o;12521:574::-;12812:6;12801:9;12794:25;12855:6;12850:2;12839:9;12835:18;12828:34;12898:3;12893:2;12882:9;12878:18;12871:31;12775:4;12919:57;12971:3;12960:9;12956:19;12948:6;12919:57;:::i;:::-;-1:-1:-1;;;;;13012:32:1;;;;13007:2;12992:18;;12985:60;-1:-1:-1;13076:3:1;13061:19;13054:35;12911:65;12521:574;-1:-1:-1;;;12521:574:1:o
Swarm Source
ipfs://4c8fe0443d5efa80c9701f037a8b1b725b372779913996d26e6ac9a6539ccb0f
Loading...
Loading
OVERVIEW
MammothAI aims to fund both de-extinction and the conservation of endangered species. Additionally, we strive to educate as many people in the Web3 space about topics relevant to MammothAI's mission through our custom AI bot called Tusk.Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.