ERC-20
Decentralized Web
Overview
Max Total Supply
995,155,092.249999999995596602 W$C
Holders
23,795 ( 0.004%)
Total Transfers
-
Market
Price
$0.0001 @ 0.000238 POL (+0.21%)
Onchain Market Cap
$71,342.67
Circulating Supply Market Cap
$66,267.00
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x2D45c2B9...8aA902f48 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Coin
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "ERC20PresetMinterBurnableUpgradeable.sol"; import "Utils.sol"; /// @title ERC-20 token that pays for all actions within the project. /// @dev there is a possibility of minting additional Coins contract Coin is ERC20PresetMinterBurnableUpgradeable { using Utils for address; address public treasury; address public treasuryLP; uint256 constant public DENOMINATOR = 10000; uint256 constant public MAX_TAX_NUMERATOR = 500; // 5% uint256 public purchaseDEXTaxNumerator; uint256 public saleDEXTaxNumerator; uint256 public purchaseDEXTaxForLPNumerator; uint256 public saleDEXTaxForLPNumerator; uint256 public transferTaxNumerator; mapping (address => bool) public isPool; mapping (address /*account*/ => bool) public isTaxWhitelisted; // no transfer tax for outgoing transfers mapping (address /*account*/ => bool) public isTaxWhitelistedToReceive; // no transfer tax for incoming transfers event TreasurySet(address indexed treasuryAddress); event TreasuryLPSet(address indexed treasuryLPAddress); event TransferTaxPaid(address indexed sender, address indexed treasury, uint256 taxAmount); event SaleDEXTaxPaid(address indexed pool, address indexed seller, address indexed treasury, uint256 taxAmount); event PurchaseDEXTaxPaid(address indexed pool, address indexed purchaser, address indexed treasury, uint256 taxAmount); event SaleDEXTaxForLPPaid(address indexed pool, address indexed seller, address indexed treasuryLP, uint256 taxAmount); event PurchaseDEXTaxForLPPaid(address indexed pool, address indexed purchaser, address indexed treasuryLP, uint256 taxAmount); event PoolAdded(address indexed addr); event PoolRemoved(address indexed addr); event TaxWhitelistAdded(address indexed addr); event TaxWhitelistRemoved(address indexed addr); event TaxWhitelistToReceiveAdded(address indexed addr); event TaxWhitelistToReceiveRemoved(address indexed addr); event TransferTaxNumeratorSet(uint256 indexed value); event PurchaseDEXTaxNumeratorSet(uint256 indexed value); event SaleDEXTaxNumeratorSet(uint256 indexed value); event PurchaseDEXTaxForLPNumeratorSet(uint256 indexed value); event SaleDEXTaxForLPNumeratorSet(uint256 indexed value); /// @notice Adds new DEX pool (only owner can call) /// @param pool pool address function addPool(address pool) external onlyOwner { isPool[pool] = true; emit PoolAdded(pool); } /// @notice Removes DEX pool (only owner can call) /// @param pool pool address function removePool(address pool) external onlyOwner { isPool[pool] = false; emit PoolRemoved(pool); } /// @notice Adds an address to whitelist to send (only owner can call) /// @param addr some address function addTaxWhitelist(address addr) external onlyOwner { isTaxWhitelisted[addr] = true; emit TaxWhitelistAdded(addr); } /// @notice Removes an address to whitelist to send (only owner can call) /// @param addr some address function removeTaxWhitelist(address addr) external onlyOwner { isTaxWhitelisted[addr] = false; emit TaxWhitelistRemoved(addr); } /// @notice Adds an address to whitelist to receive (only owner can call) /// @param addr some address function addTaxWhitelistToReceive(address addr) external onlyOwner { isTaxWhitelistedToReceive[addr] = true; emit TaxWhitelistToReceiveAdded(addr); } /// @notice Removes an address to whitelist to receive (only owner can call) /// @param addr some address function removeTaxWhitelistToReceive(address addr) external onlyOwner { isTaxWhitelistedToReceive[addr] = false; emit TaxWhitelistToReceiveRemoved(addr); } /// @notice Set new "treasury" setting value (only contract owner may call) /// @param treasuryAddress new setting value function setTreasury(address treasuryAddress) external onlyOwner { treasury = treasuryAddress.ensureNotZero(); emit TreasurySet(treasuryAddress); } /// @notice Set new "treasuryLP" setting value (only contract owner may call) /// @param treasuryLPAddress new setting value function setTreasuryLP(address treasuryLPAddress) external onlyOwner { treasuryLP = treasuryLPAddress.ensureNotZero(); emit TreasuryLPSet(treasuryLPAddress); } /// @notice Set new "transferTaxNumerator" setting value (only contract owner may call) /// @param value new setting value function setTransferTaxNumerator(uint256 value) external onlyOwner { require(value <= MAX_TAX_NUMERATOR, "TAX_IS_TOO_HIGH"); transferTaxNumerator = value; emit TransferTaxNumeratorSet(value); } /// @notice Set new "purchaseDEXTaxNumerator" setting value (only contract owner may call) /// @param value new setting value function setPurchaseDEXTaxNumerator(uint256 value) external onlyOwner { require(value <= MAX_TAX_NUMERATOR, "TAX_IS_TOO_HIGH"); purchaseDEXTaxNumerator = value; emit PurchaseDEXTaxNumeratorSet(value); } /// @notice Set new "saleDEXTaxNumerator" setting value (only contract owner may call) /// @param value new setting value function setSaleDEXTaxNumerator(uint256 value) external onlyOwner { require(value <= MAX_TAX_NUMERATOR, "TAX_IS_TOO_HIGH"); saleDEXTaxNumerator = value; emit SaleDEXTaxNumeratorSet(value); } /// @notice Set new "purchaseDEXTaxForLPNumerator" setting value (only contract owner may call) /// @param value new setting value function setPurchaseDEXTaxForLPNumerator(uint256 value) external onlyOwner { require(value <= MAX_TAX_NUMERATOR, "TAX_IS_TOO_HIGH"); purchaseDEXTaxForLPNumerator = value; emit PurchaseDEXTaxForLPNumeratorSet(value); } /// @notice Set new "saleDEXTaxForLPNumerator" setting value (only contract owner may call) /// @param value new setting value function setSaleDEXTaxForLPNumerator(uint256 value) external onlyOwner { require(value <= MAX_TAX_NUMERATOR, "TAX_IS_TOO_HIGH"); saleDEXTaxForLPNumerator = value; emit SaleDEXTaxForLPNumeratorSet(value); } /// @notice initialize the contract /// @param nameValue name /// @param symbolValue symbol /// @param receiverValue receiver of the initial minting /// @param totalSupplyValue total supply of the token on the initial minting /// @param treasuryAddressValue treasury to receive fees /// @param treasuryLPAddressValue treasuryLP to receive LP fees /// @param ownerValue contract owner function initialize( string memory nameValue, string memory symbolValue, address receiverValue, uint256 totalSupplyValue, address treasuryAddressValue, address treasuryLPAddressValue, address ownerValue ) external initializer { treasury = treasuryAddressValue.ensureNotZero(); treasuryLP = treasuryLPAddressValue.ensureNotZero(); __ERC20PresetMinterBurnable_init(nameValue, symbolValue, ownerValue); _mint(receiverValue, totalSupplyValue); } function _transfer(address from, address recipient, uint256 amount) internal virtual override { uint256 initialAmount = amount; if(isPool[recipient]) { if (isPool[from]) { // isPool[from] && isPool[recipient] // swap through 2 pools e.g. path=[USDC, COIN, USDT] // no tax for cross pool liquidity moving } else { // !isPool[from] && isPool[recipient] // sale if (!isTaxWhitelisted[from]) { if (saleDEXTaxNumerator > 0){ uint256 tax = initialAmount * saleDEXTaxNumerator / DENOMINATOR; super._transfer(from, treasury, tax); amount -= tax; emit SaleDEXTaxPaid({seller: from, pool: recipient, treasury: treasury, taxAmount: tax}); } if(saleDEXTaxForLPNumerator > 0) { uint256 tax = initialAmount * saleDEXTaxForLPNumerator / DENOMINATOR; super._transfer(from, treasuryLP, tax); amount -= tax; emit SaleDEXTaxForLPPaid({seller: from, pool: recipient, treasuryLP: treasuryLP, taxAmount: tax}); } } } } else { // !isPool[recipient] if (isPool[from]) { // isPool[from] && !isPool[recipient] // purchase if ((!isTaxWhitelisted[recipient]) && (!isTaxWhitelistedToReceive[recipient])) { if (purchaseDEXTaxNumerator > 0) { uint256 tax = initialAmount * purchaseDEXTaxNumerator / DENOMINATOR; super._transfer(from, treasury, tax); amount -= tax; emit PurchaseDEXTaxPaid({purchaser: recipient, pool: from, treasury: treasury, taxAmount: tax}); } if (purchaseDEXTaxForLPNumerator > 0) { uint256 tax = initialAmount * purchaseDEXTaxForLPNumerator / DENOMINATOR; super._transfer(from, treasuryLP, tax); amount -= tax; emit PurchaseDEXTaxForLPPaid({purchaser: recipient, pool: from, treasuryLP: treasuryLP, taxAmount: tax}); } } } else { // !isPool[from] && !isPool[recipient] // regular transfer (no dex) if ( (transferTaxNumerator > 0) && (!isTaxWhitelisted[from]) && (!isTaxWhitelistedToReceive[recipient]) ) { uint256 tax = initialAmount * transferTaxNumerator / DENOMINATOR; super._transfer(from, treasury, tax); amount -= tax; emit TransferTaxPaid({sender: from, treasury: treasury, taxAmount: tax}); } } } super._transfer(from, recipient, amount); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; import "ERC20BurnableUpgradeable.sol"; import "OwnableUpgradeable.sol"; import "ContextUpgradeable.sol"; import "Initializable.sol"; /** * @title ERC20PresetMinterBurnableUpgradeable * @dev erc20 token template */ abstract contract ERC20PresetMinterBurnableUpgradeable is Initializable, ContextUpgradeable, OwnableUpgradeable, ERC20BurnableUpgradeable { function initialize(string memory nameValue, string memory symbolValue, address ownerValue) external virtual initializer { __ERC20PresetMinterBurnable_init(nameValue, symbolValue, ownerValue); } function __ERC20PresetMinterBurnable_init(string memory nameValue, string memory symbolValue, address ownerValue) internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); __ERC20_init_unchained(nameValue, symbolValue); __ERC20Burnable_init_unchained(); __ERC20PresetMinterBurnable_init_unchained(ownerValue); } function __ERC20PresetMinterBurnable_init_unchained(address ownerValue) internal initializer { transferOwnership(ownerValue); } /** * @dev Mints `amount` new tokens for `to`. * See {ERC20-_mint}. */ function mint(address to, uint256 amount) public onlyOwner virtual { _mint(to, amount); } uint256[10] private __gap_ERC20PresetMinterBurnableUpgradeable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "ERC20Upgradeable.sol"; import "ContextUpgradeable.sol"; import "Initializable.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal initializer { __Context_init_unchained(); __ERC20Burnable_init_unchained(); } function __ERC20Burnable_init_unchained() internal initializer { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20Upgradeable.sol"; import "IERC20MetadataUpgradeable.sol"; import "ContextUpgradeable.sol"; import "Initializable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { 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. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += 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 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 {} uint256[45] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "ContextUpgradeable.sol"; import "Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.6; /// @title Utils library Utils { function ensureNotZero(address addr) internal pure returns(address) { require(addr != address(0), "ZERO_ADDRESS"); return addr; } modifier onlyNotZeroAddress(address addr) { require(addr != address(0), "ZERO_ADDRESS"); _; } }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 10 }, "libraries": { "Coin.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"addr","type":"address"}],"name":"PoolAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"PoolRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"}],"name":"PurchaseDEXTaxForLPNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":true,"internalType":"address","name":"treasuryLP","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"PurchaseDEXTaxForLPPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"}],"name":"PurchaseDEXTaxNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"purchaser","type":"address"},{"indexed":true,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"PurchaseDEXTaxPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SaleDEXTaxForLPNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"address","name":"treasuryLP","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"SaleDEXTaxForLPPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"}],"name":"SaleDEXTaxNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pool","type":"address"},{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"SaleDEXTaxPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"TaxWhitelistAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"TaxWhitelistRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"TaxWhitelistToReceiveAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"}],"name":"TaxWhitelistToReceiveRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferTaxNumeratorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"treasury","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"}],"name":"TransferTaxPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryLPAddress","type":"address"}],"name":"TreasuryLPSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"TreasurySet","type":"event"},{"inputs":[],"name":"DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_TAX_NUMERATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addTaxWhitelistToReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"nameValue","type":"string"},{"internalType":"string","name":"symbolValue","type":"string"},{"internalType":"address","name":"ownerValue","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"nameValue","type":"string"},{"internalType":"string","name":"symbolValue","type":"string"},{"internalType":"address","name":"receiverValue","type":"address"},{"internalType":"uint256","name":"totalSupplyValue","type":"uint256"},{"internalType":"address","name":"treasuryAddressValue","type":"address"},{"internalType":"address","name":"treasuryLPAddressValue","type":"address"},{"internalType":"address","name":"ownerValue","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxWhitelistedToReceive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseDEXTaxForLPNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"purchaseDEXTaxNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"removePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeTaxWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"removeTaxWhitelistToReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleDEXTaxForLPNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleDEXTaxNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPurchaseDEXTaxForLPNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setPurchaseDEXTaxNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSaleDEXTaxForLPNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setSaleDEXTaxNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setTransferTaxNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryAddress","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"treasuryLPAddress","type":"address"}],"name":"setTreasuryLP","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryLP","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506122be806100206000396000f3fe608060405234801561001057600080fd5b50600436106102035760003560e01c80629a5b141461020857806301a11bfb1461022457806306fdde0314610239578063077f224a1461024e578063095ea7b31461026157806318160ddd146102845780631e7a79301461028c57806323b872dd14610295578063313ce567146102a85780633482ef97146102b757806339509351146102ca5780633b7d0946146102dd57806340c10f19146102f057806342966c681461030357806342b36ef0146103165780635383a2c41461031f5780635b16ebb71461034257806361d027b31461036557806362c10d54146103905780636f488e97146103a357806370a08231146103b6578063715018a6146103df57806372e531aa146103e757806373bca0bf146103fa57806379cc67901461041d5780637df29ac4146104305780638da5cb5b14610439578063918f86741461044157806395d89b411461044a578063a457c2d714610452578063a9059cbb14610465578063bdc54f8e14610478578063c68157a21461048b578063cdc88a9714610494578063d0040d70146104a7578063d914cd4b146104ba578063dd62ed3e146104cd578063e02ed01814610506578063e2f77ee514610519578063e995e73514610522578063edb39e2414610535578063f0f4426014610548578063f2fde38b1461055b578063fe8b7dba1461056e575b600080fd5b61021160d95481565b6040519081526020015b60405180910390f35b610237610232366004612077565b610581565b005b61024161060e565b60405161021b9190612090565b61023761025c366004611f55565b6106a0565b61027461026f366004611f2b565b61071a565b604051901515815260200161021b565b606754610211565b61021160d85481565b6102746102a3366004611eef565b610730565b6040516012815260200161021b565b6102376102c5366004612077565b6107da565b6102746102d8366004611f2b565b61085e565b6102376102eb366004611e9a565b61089a565b6102376102fe366004611f2b565b610912565b610237610311366004612077565b61094f565b61021160d75481565b61027461032d366004611e9a565b60db6020526000908152604090205460ff1681565b610274610350366004611e9a565b60da6020526000908152604090205460ff1681565b60d354610378906001600160a01b031681565b6040516001600160a01b03909116815260200161021b565b60d454610378906001600160a01b031681565b6102376103b1366004611e9a565b61095c565b6102116103c4366004611e9a565b6001600160a01b031660009081526065602052604090205490565b6102376109e9565b6102376103f5366004612077565b610a24565b610274610408366004611e9a565b60dc6020526000908152604090205460ff1681565b61023761042b366004611f2b565b610aa8565b61021160d65481565b610378610b2e565b61021161271081565b610241610b3d565b610274610460366004611f2b565b610b4c565b610274610473366004611f2b565b610be5565b610237610486366004611e9a565b610bf2565b6102116101f481565b6102376104a2366004612077565b610c6a565b6102376104b5366004611e9a565b610cee565b6102376104c8366004611e9a565b610d69565b6102116104db366004611ebc565b6001600160a01b03918216600090815260666020908152604080832093909416825291909152205490565b610237610514366004611e9a565b610de4565b61021160d55481565b610237610530366004611fc8565b610e5c565b610237610543366004612077565b610f3d565b610237610556366004611e9a565b610fc1565b610237610569366004611e9a565b61104e565b61023761057c366004611e9a565b6110eb565b3361058a610b2e565b6001600160a01b0316146105b95760405162461bcd60e51b81526004016105b09061215c565b60405180910390fd5b6101f48111156105db5760405162461bcd60e51b81526004016105b0906120e5565b60d781905560405181907ff4bf2ccd5bbce3be6850bcc74210ddec375bd68ac2c228c628862433f641299390600090a250565b60606068805461061d90612201565b80601f016020809104026020016040519081016040528092919081815260200182805461064990612201565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b600054610100900460ff16806106b9575060005460ff16155b6106d55760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff161580156106f7576000805461ffff19166101011790555b610702848484611166565b8015610714576000805461ff00191690555b50505050565b60006107273384846111e8565b50600192915050565b600061073d84848461130c565b6001600160a01b0384166000908152606660209081526040808320338452909152902054828110156107c25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105b0565b6107cf85338584036111e8565b506001949350505050565b336107e3610b2e565b6001600160a01b0316146108095760405162461bcd60e51b81526004016105b09061215c565b6101f481111561082b5760405162461bcd60e51b81526004016105b0906120e5565b60d581905560405181907f259592f2b1c6543018003110baf02aeccf2af3550c5b294f2dd679f3e3cf12a490600090a250565b3360008181526066602090815260408083206001600160a01b03871684529091528120549091610727918590610895908690612191565b6111e8565b336108a3610b2e565b6001600160a01b0316146108c95760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260da6020526040808220805460ff19169055517f4106dfdaa577573db51c0ca93f766dbedfa0758faa2e7f5bcdb7c142be803c3f9190a250565b3361091b610b2e565b6001600160a01b0316146109415760405162461bcd60e51b81526004016105b09061215c565b61094b828261172b565b5050565b61095933826117f8565b50565b33610965610b2e565b6001600160a01b03161461098b5760405162461bcd60e51b81526004016105b09061215c565b61099d816001600160a01b0316611934565b60d480546001600160a01b0319166001600160a01b03928316179055604051908216907f141561e3c7cf4c25acdc11c68f474c0b7926a6058920c4778fc9d4958053748e90600090a250565b336109f2610b2e565b6001600160a01b031614610a185760405162461bcd60e51b81526004016105b09061215c565b610a22600061197f565b565b33610a2d610b2e565b6001600160a01b031614610a535760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610a755760405162461bcd60e51b81526004016105b0906120e5565b60d981905560405181907f5a5d79410664d043b0c1e7595beb7565a11830cc15b662436e8dec67872db6dd90600090a250565b6000610ab483336104db565b905081811015610b125760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105b0565b610b1f83338484036111e8565b610b2983836117f8565b505050565b6033546001600160a01b031690565b60606069805461061d90612201565b3360009081526066602090815260408083206001600160a01b038616845290915281205482811015610bce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b610bdb33858584036111e8565b5060019392505050565b600061072733848461130c565b33610bfb610b2e565b6001600160a01b031614610c215760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260dc6020526040808220805460ff19169055517f81edde3772313b73e2dd59643c71ddc9e8f754720aa17698321ca23d8e0dba3a9190a250565b33610c73610b2e565b6001600160a01b031614610c995760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610cbb5760405162461bcd60e51b81526004016105b0906120e5565b60d881905560405181907f6115ccb2c72906b27c6e61b888b58fdbf793137995a3094fd66d00c842300c4690600090a250565b33610cf7610b2e565b6001600160a01b031614610d1d5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260db6020526040808220805460ff19166001179055517f693fe5d1209b6db4852e301e48e56b7c5979b4d80e2a748e2e7f524e55330f9a9190a250565b33610d72610b2e565b6001600160a01b031614610d985760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260da6020526040808220805460ff19166001179055517f73cca62ab1b520c9715bf4e6c71e3e518c754e7148f65102f43289a7df0efea69190a250565b33610ded610b2e565b6001600160a01b031614610e135760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260db6020526040808220805460ff19169055517f7cddf9e9f1abf950d1cd0a4531f7ed0c1d0b33c827a422315f3da543c11a82be9190a250565b600054610100900460ff1680610e75575060005460ff16155b610e915760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015610eb3576000805461ffff19166101011790555b610ec5846001600160a01b0316611934565b60d380546001600160a01b0319166001600160a01b03928316179055610eec908416611934565b60d480546001600160a01b0319166001600160a01b0392909216919091179055610f17888884611166565b610f21868661172b565b8015610f33576000805461ff00191690555b5050505050505050565b33610f46610b2e565b6001600160a01b031614610f6c5760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610f8e5760405162461bcd60e51b81526004016105b0906120e5565b60d681905560405181907f9bf8e36d0b01308d9afbfaee217668c657d6a9f47385a26beef9a55f0dd2b11f90600090a250565b33610fca610b2e565b6001600160a01b031614610ff05760405162461bcd60e51b81526004016105b09061215c565b611002816001600160a01b0316611934565b60d380546001600160a01b0319166001600160a01b03928316179055604051908216907f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f90600090a250565b33611057610b2e565b6001600160a01b03161461107d5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b0381166110e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6109598161197f565b336110f4610b2e565b6001600160a01b03161461111a5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260dc6020526040808220805460ff19166001179055517f777960dffc2b89c1a62bf40947fceac37c79cc21cca84d5357a7004a1a0787c19190a250565b600054610100900460ff168061117f575060005460ff16155b61119b5760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff161580156111bd576000805461ffff19166101011790555b6111c56119d1565b6111cd611a3c565b6111d78484611a9c565b6111df6119d1565b61070282611b31565b6001600160a01b03831661124a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526066602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600090815260da6020526040902054819060ff16156114ab576001600160a01b038416600090815260da602052604090205460ff161561135557611720565b6001600160a01b038416600090815260db602052604090205460ff166114a65760d6541561140d57600061271060d6548361139091906121cb565b61139a91906121a9565b60d3549091506113b59086906001600160a01b031683611ba6565b6113bf81846121ea565b60d3546040518381529194506001600160a01b0390811691878216918716907f55565da1a5084f342e07a1759ebbc15706516aeed4e1265d4d92c0b5671163fc9060200160405180910390a4505b60d854156114a657600061271060d8548361142891906121cb565b61143291906121a9565b60d45490915061144d9086906001600160a01b031683611ba6565b61145781846121ea565b60d4546040518381529194506001600160a01b0390811691878216918716907f0e10e5b62fb7d3963400c85188c00eb8ea2c475711dd5f762e0e13c953492aca906020015b60405180910390a4505b611720565b6001600160a01b038416600090815260da602052604090205460ff161561163e576001600160a01b038316600090815260db602052604090205460ff1615801561150e57506001600160a01b038316600090815260dc602052604090205460ff16155b156114a65760d554156115ab57600061271060d5548361152e91906121cb565b61153891906121a9565b60d3549091506115539086906001600160a01b031683611ba6565b61155d81846121ea565b60d3546040518381529194506001600160a01b0390811691868216918816907f92184629d8af571e832674a0426fdcba8cb912c5a5377289d2d1ad4ee03740959060200160405180910390a4505b60d754156114a657600061271060d754836115c691906121cb565b6115d091906121a9565b60d4549091506115eb9086906001600160a01b031683611ba6565b6115f581846121ea565b60d4546040518381529194506001600160a01b0390811691868216918816907f352b1d8286c2715d7f6a8d3c44529f233b3625cbbc505515fa224d7e49582a549060200161149c565b600060d95411801561166957506001600160a01b038416600090815260db602052604090205460ff16155b801561168e57506001600160a01b038316600090815260dc602052604090205460ff16155b1561172057600061271060d954836116a691906121cb565b6116b091906121a9565b60d3549091506116cb9086906001600160a01b031683611ba6565b6116d581846121ea565b60d3546040518381529194506001600160a01b0390811691908716907fd003ec03e560367d4ca71e6b8a4344028e71021194036b285fc7b50aa24f7f739060200160405180910390a3505b610714848484611ba6565b6001600160a01b0382166117815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105b0565b80606760008282546117939190612191565b90915550506001600160a01b038216600090815260656020526040812080548392906117c0908490612191565b90915550506040518181526001600160a01b038316906000906000805160206122698339815191529060200160405180910390a35050565b6001600160a01b0382166118585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b6001600160a01b038216600090815260656020526040902054818110156118cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105b0565b6001600160a01b03831660009081526065602052604081208383039055606780548492906118fb9084906121ea565b90915550506040518281526000906001600160a01b038516906000805160206122698339815191529060200160405180910390a3505050565b60006001600160a01b03821661197b5760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b60448201526064016105b0565b5090565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806119ea575060005460ff16155b611a065760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611a28576000805461ffff19166101011790555b8015610959576000805461ff001916905550565b600054610100900460ff1680611a55575060005460ff16155b611a715760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611a93576000805461ffff19166101011790555b611a283361197f565b600054610100900460ff1680611ab5575060005460ff16155b611ad15760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611af3576000805461ffff19166101011790555b8251611b06906068906020860190611d62565b508151611b1a906069906020850190611d62565b508015610b29576000805461ff0019169055505050565b600054610100900460ff1680611b4a575060005460ff16155b611b665760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611b88576000805461ffff19166101011790555b611b918261104e565b801561094b576000805461ff00191690555050565b6001600160a01b038316611c0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b038216611c6c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b03831660009081526065602052604090205481811015611ce45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b03808516600090815260656020526040808220858503905591851681529081208054849290611d1b908490612191565b92505081905550826001600160a01b0316846001600160a01b031660008051602061226983398151915284604051611d5591815260200190565b60405180910390a3610714565b828054611d6e90612201565b90600052602060002090601f016020900481019282611d905760008555611dd6565b82601f10611da957805160ff1916838001178555611dd6565b82800160010185558215611dd6579182015b82811115611dd6578251825591602001919060010190611dbb565b5061197b9291505b8082111561197b5760008155600101611dde565b80356001600160a01b0381168114611e0957600080fd5b919050565b600082601f830112611e1f57600080fd5b81356001600160401b0380821115611e3957611e39612252565b604051601f8301601f19908116603f01168101908282118183101715611e6157611e61612252565b81604052838152866020858801011115611e7a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611eac57600080fd5b611eb582611df2565b9392505050565b60008060408385031215611ecf57600080fd5b611ed883611df2565b9150611ee660208401611df2565b90509250929050565b600080600060608486031215611f0457600080fd5b611f0d84611df2565b9250611f1b60208501611df2565b9150604084013590509250925092565b60008060408385031215611f3e57600080fd5b611f4783611df2565b946020939093013593505050565b600080600060608486031215611f6a57600080fd5b83356001600160401b0380821115611f8157600080fd5b611f8d87838801611e0e565b94506020860135915080821115611fa357600080fd5b50611fb086828701611e0e565b925050611fbf60408501611df2565b90509250925092565b600080600080600080600060e0888a031215611fe357600080fd5b87356001600160401b0380821115611ffa57600080fd5b6120068b838c01611e0e565b985060208a013591508082111561201c57600080fd5b506120298a828b01611e0e565b96505061203860408901611df2565b94506060880135935061204d60808901611df2565b925061205b60a08901611df2565b915061206960c08901611df2565b905092959891949750929550565b60006020828403121561208957600080fd5b5035919050565b600060208083528351808285015260005b818110156120bd578581018301518582016040015282016120a1565b818111156120cf576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e0a882b0be92a6bea89e9ebe90928e9608b1b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121a4576121a461223c565b500190565b6000826121c657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156121e5576121e561223c565b500290565b6000828210156121fc576121fc61223c565b500390565b600181811c9082168061221557607f821691505b6020821081141561223657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202a050bfd9d7f5c6efb596052b5c3ca62399d87885fc27c3d1a1a31637028296d64736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102035760003560e01c80629a5b141461020857806301a11bfb1461022457806306fdde0314610239578063077f224a1461024e578063095ea7b31461026157806318160ddd146102845780631e7a79301461028c57806323b872dd14610295578063313ce567146102a85780633482ef97146102b757806339509351146102ca5780633b7d0946146102dd57806340c10f19146102f057806342966c681461030357806342b36ef0146103165780635383a2c41461031f5780635b16ebb71461034257806361d027b31461036557806362c10d54146103905780636f488e97146103a357806370a08231146103b6578063715018a6146103df57806372e531aa146103e757806373bca0bf146103fa57806379cc67901461041d5780637df29ac4146104305780638da5cb5b14610439578063918f86741461044157806395d89b411461044a578063a457c2d714610452578063a9059cbb14610465578063bdc54f8e14610478578063c68157a21461048b578063cdc88a9714610494578063d0040d70146104a7578063d914cd4b146104ba578063dd62ed3e146104cd578063e02ed01814610506578063e2f77ee514610519578063e995e73514610522578063edb39e2414610535578063f0f4426014610548578063f2fde38b1461055b578063fe8b7dba1461056e575b600080fd5b61021160d95481565b6040519081526020015b60405180910390f35b610237610232366004612077565b610581565b005b61024161060e565b60405161021b9190612090565b61023761025c366004611f55565b6106a0565b61027461026f366004611f2b565b61071a565b604051901515815260200161021b565b606754610211565b61021160d85481565b6102746102a3366004611eef565b610730565b6040516012815260200161021b565b6102376102c5366004612077565b6107da565b6102746102d8366004611f2b565b61085e565b6102376102eb366004611e9a565b61089a565b6102376102fe366004611f2b565b610912565b610237610311366004612077565b61094f565b61021160d75481565b61027461032d366004611e9a565b60db6020526000908152604090205460ff1681565b610274610350366004611e9a565b60da6020526000908152604090205460ff1681565b60d354610378906001600160a01b031681565b6040516001600160a01b03909116815260200161021b565b60d454610378906001600160a01b031681565b6102376103b1366004611e9a565b61095c565b6102116103c4366004611e9a565b6001600160a01b031660009081526065602052604090205490565b6102376109e9565b6102376103f5366004612077565b610a24565b610274610408366004611e9a565b60dc6020526000908152604090205460ff1681565b61023761042b366004611f2b565b610aa8565b61021160d65481565b610378610b2e565b61021161271081565b610241610b3d565b610274610460366004611f2b565b610b4c565b610274610473366004611f2b565b610be5565b610237610486366004611e9a565b610bf2565b6102116101f481565b6102376104a2366004612077565b610c6a565b6102376104b5366004611e9a565b610cee565b6102376104c8366004611e9a565b610d69565b6102116104db366004611ebc565b6001600160a01b03918216600090815260666020908152604080832093909416825291909152205490565b610237610514366004611e9a565b610de4565b61021160d55481565b610237610530366004611fc8565b610e5c565b610237610543366004612077565b610f3d565b610237610556366004611e9a565b610fc1565b610237610569366004611e9a565b61104e565b61023761057c366004611e9a565b6110eb565b3361058a610b2e565b6001600160a01b0316146105b95760405162461bcd60e51b81526004016105b09061215c565b60405180910390fd5b6101f48111156105db5760405162461bcd60e51b81526004016105b0906120e5565b60d781905560405181907ff4bf2ccd5bbce3be6850bcc74210ddec375bd68ac2c228c628862433f641299390600090a250565b60606068805461061d90612201565b80601f016020809104026020016040519081016040528092919081815260200182805461064990612201565b80156106965780601f1061066b57610100808354040283529160200191610696565b820191906000526020600020905b81548152906001019060200180831161067957829003601f168201915b5050505050905090565b600054610100900460ff16806106b9575060005460ff16155b6106d55760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff161580156106f7576000805461ffff19166101011790555b610702848484611166565b8015610714576000805461ff00191690555b50505050565b60006107273384846111e8565b50600192915050565b600061073d84848461130c565b6001600160a01b0384166000908152606660209081526040808320338452909152902054828110156107c25760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016105b0565b6107cf85338584036111e8565b506001949350505050565b336107e3610b2e565b6001600160a01b0316146108095760405162461bcd60e51b81526004016105b09061215c565b6101f481111561082b5760405162461bcd60e51b81526004016105b0906120e5565b60d581905560405181907f259592f2b1c6543018003110baf02aeccf2af3550c5b294f2dd679f3e3cf12a490600090a250565b3360008181526066602090815260408083206001600160a01b03871684529091528120549091610727918590610895908690612191565b6111e8565b336108a3610b2e565b6001600160a01b0316146108c95760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260da6020526040808220805460ff19169055517f4106dfdaa577573db51c0ca93f766dbedfa0758faa2e7f5bcdb7c142be803c3f9190a250565b3361091b610b2e565b6001600160a01b0316146109415760405162461bcd60e51b81526004016105b09061215c565b61094b828261172b565b5050565b61095933826117f8565b50565b33610965610b2e565b6001600160a01b03161461098b5760405162461bcd60e51b81526004016105b09061215c565b61099d816001600160a01b0316611934565b60d480546001600160a01b0319166001600160a01b03928316179055604051908216907f141561e3c7cf4c25acdc11c68f474c0b7926a6058920c4778fc9d4958053748e90600090a250565b336109f2610b2e565b6001600160a01b031614610a185760405162461bcd60e51b81526004016105b09061215c565b610a22600061197f565b565b33610a2d610b2e565b6001600160a01b031614610a535760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610a755760405162461bcd60e51b81526004016105b0906120e5565b60d981905560405181907f5a5d79410664d043b0c1e7595beb7565a11830cc15b662436e8dec67872db6dd90600090a250565b6000610ab483336104db565b905081811015610b125760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084016105b0565b610b1f83338484036111e8565b610b2983836117f8565b505050565b6033546001600160a01b031690565b60606069805461061d90612201565b3360009081526066602090815260408083206001600160a01b038616845290915281205482811015610bce5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105b0565b610bdb33858584036111e8565b5060019392505050565b600061072733848461130c565b33610bfb610b2e565b6001600160a01b031614610c215760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260dc6020526040808220805460ff19169055517f81edde3772313b73e2dd59643c71ddc9e8f754720aa17698321ca23d8e0dba3a9190a250565b33610c73610b2e565b6001600160a01b031614610c995760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610cbb5760405162461bcd60e51b81526004016105b0906120e5565b60d881905560405181907f6115ccb2c72906b27c6e61b888b58fdbf793137995a3094fd66d00c842300c4690600090a250565b33610cf7610b2e565b6001600160a01b031614610d1d5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260db6020526040808220805460ff19166001179055517f693fe5d1209b6db4852e301e48e56b7c5979b4d80e2a748e2e7f524e55330f9a9190a250565b33610d72610b2e565b6001600160a01b031614610d985760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260da6020526040808220805460ff19166001179055517f73cca62ab1b520c9715bf4e6c71e3e518c754e7148f65102f43289a7df0efea69190a250565b33610ded610b2e565b6001600160a01b031614610e135760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260db6020526040808220805460ff19169055517f7cddf9e9f1abf950d1cd0a4531f7ed0c1d0b33c827a422315f3da543c11a82be9190a250565b600054610100900460ff1680610e75575060005460ff16155b610e915760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015610eb3576000805461ffff19166101011790555b610ec5846001600160a01b0316611934565b60d380546001600160a01b0319166001600160a01b03928316179055610eec908416611934565b60d480546001600160a01b0319166001600160a01b0392909216919091179055610f17888884611166565b610f21868661172b565b8015610f33576000805461ff00191690555b5050505050505050565b33610f46610b2e565b6001600160a01b031614610f6c5760405162461bcd60e51b81526004016105b09061215c565b6101f4811115610f8e5760405162461bcd60e51b81526004016105b0906120e5565b60d681905560405181907f9bf8e36d0b01308d9afbfaee217668c657d6a9f47385a26beef9a55f0dd2b11f90600090a250565b33610fca610b2e565b6001600160a01b031614610ff05760405162461bcd60e51b81526004016105b09061215c565b611002816001600160a01b0316611934565b60d380546001600160a01b0319166001600160a01b03928316179055604051908216907f3c864541ef71378c6229510ed90f376565ee42d9c5e0904a984a9e863e6db44f90600090a250565b33611057610b2e565b6001600160a01b03161461107d5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b0381166110e25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105b0565b6109598161197f565b336110f4610b2e565b6001600160a01b03161461111a5760405162461bcd60e51b81526004016105b09061215c565b6001600160a01b038116600081815260dc6020526040808220805460ff19166001179055517f777960dffc2b89c1a62bf40947fceac37c79cc21cca84d5357a7004a1a0787c19190a250565b600054610100900460ff168061117f575060005460ff16155b61119b5760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff161580156111bd576000805461ffff19166101011790555b6111c56119d1565b6111cd611a3c565b6111d78484611a9c565b6111df6119d1565b61070282611b31565b6001600160a01b03831661124a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105b0565b6001600160a01b0382166112ab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105b0565b6001600160a01b0383811660008181526066602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600090815260da6020526040902054819060ff16156114ab576001600160a01b038416600090815260da602052604090205460ff161561135557611720565b6001600160a01b038416600090815260db602052604090205460ff166114a65760d6541561140d57600061271060d6548361139091906121cb565b61139a91906121a9565b60d3549091506113b59086906001600160a01b031683611ba6565b6113bf81846121ea565b60d3546040518381529194506001600160a01b0390811691878216918716907f55565da1a5084f342e07a1759ebbc15706516aeed4e1265d4d92c0b5671163fc9060200160405180910390a4505b60d854156114a657600061271060d8548361142891906121cb565b61143291906121a9565b60d45490915061144d9086906001600160a01b031683611ba6565b61145781846121ea565b60d4546040518381529194506001600160a01b0390811691878216918716907f0e10e5b62fb7d3963400c85188c00eb8ea2c475711dd5f762e0e13c953492aca906020015b60405180910390a4505b611720565b6001600160a01b038416600090815260da602052604090205460ff161561163e576001600160a01b038316600090815260db602052604090205460ff1615801561150e57506001600160a01b038316600090815260dc602052604090205460ff16155b156114a65760d554156115ab57600061271060d5548361152e91906121cb565b61153891906121a9565b60d3549091506115539086906001600160a01b031683611ba6565b61155d81846121ea565b60d3546040518381529194506001600160a01b0390811691868216918816907f92184629d8af571e832674a0426fdcba8cb912c5a5377289d2d1ad4ee03740959060200160405180910390a4505b60d754156114a657600061271060d754836115c691906121cb565b6115d091906121a9565b60d4549091506115eb9086906001600160a01b031683611ba6565b6115f581846121ea565b60d4546040518381529194506001600160a01b0390811691868216918816907f352b1d8286c2715d7f6a8d3c44529f233b3625cbbc505515fa224d7e49582a549060200161149c565b600060d95411801561166957506001600160a01b038416600090815260db602052604090205460ff16155b801561168e57506001600160a01b038316600090815260dc602052604090205460ff16155b1561172057600061271060d954836116a691906121cb565b6116b091906121a9565b60d3549091506116cb9086906001600160a01b031683611ba6565b6116d581846121ea565b60d3546040518381529194506001600160a01b0390811691908716907fd003ec03e560367d4ca71e6b8a4344028e71021194036b285fc7b50aa24f7f739060200160405180910390a3505b610714848484611ba6565b6001600160a01b0382166117815760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105b0565b80606760008282546117939190612191565b90915550506001600160a01b038216600090815260656020526040812080548392906117c0908490612191565b90915550506040518181526001600160a01b038316906000906000805160206122698339815191529060200160405180910390a35050565b6001600160a01b0382166118585760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105b0565b6001600160a01b038216600090815260656020526040902054818110156118cc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105b0565b6001600160a01b03831660009081526065602052604081208383039055606780548492906118fb9084906121ea565b90915550506040518281526000906001600160a01b038516906000805160206122698339815191529060200160405180910390a3505050565b60006001600160a01b03821661197b5760405162461bcd60e51b815260206004820152600c60248201526b5a45524f5f4144445245535360a01b60448201526064016105b0565b5090565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16806119ea575060005460ff16155b611a065760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611a28576000805461ffff19166101011790555b8015610959576000805461ff001916905550565b600054610100900460ff1680611a55575060005460ff16155b611a715760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611a93576000805461ffff19166101011790555b611a283361197f565b600054610100900460ff1680611ab5575060005460ff16155b611ad15760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611af3576000805461ffff19166101011790555b8251611b06906068906020860190611d62565b508151611b1a906069906020850190611d62565b508015610b29576000805461ff0019169055505050565b600054610100900460ff1680611b4a575060005460ff16155b611b665760405162461bcd60e51b81526004016105b09061210e565b600054610100900460ff16158015611b88576000805461ffff19166101011790555b611b918261104e565b801561094b576000805461ff00191690555050565b6001600160a01b038316611c0a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105b0565b6001600160a01b038216611c6c5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105b0565b6001600160a01b03831660009081526065602052604090205481811015611ce45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105b0565b6001600160a01b03808516600090815260656020526040808220858503905591851681529081208054849290611d1b908490612191565b92505081905550826001600160a01b0316846001600160a01b031660008051602061226983398151915284604051611d5591815260200190565b60405180910390a3610714565b828054611d6e90612201565b90600052602060002090601f016020900481019282611d905760008555611dd6565b82601f10611da957805160ff1916838001178555611dd6565b82800160010185558215611dd6579182015b82811115611dd6578251825591602001919060010190611dbb565b5061197b9291505b8082111561197b5760008155600101611dde565b80356001600160a01b0381168114611e0957600080fd5b919050565b600082601f830112611e1f57600080fd5b81356001600160401b0380821115611e3957611e39612252565b604051601f8301601f19908116603f01168101908282118183101715611e6157611e61612252565b81604052838152866020858801011115611e7a57600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611eac57600080fd5b611eb582611df2565b9392505050565b60008060408385031215611ecf57600080fd5b611ed883611df2565b9150611ee660208401611df2565b90509250929050565b600080600060608486031215611f0457600080fd5b611f0d84611df2565b9250611f1b60208501611df2565b9150604084013590509250925092565b60008060408385031215611f3e57600080fd5b611f4783611df2565b946020939093013593505050565b600080600060608486031215611f6a57600080fd5b83356001600160401b0380821115611f8157600080fd5b611f8d87838801611e0e565b94506020860135915080821115611fa357600080fd5b50611fb086828701611e0e565b925050611fbf60408501611df2565b90509250925092565b600080600080600080600060e0888a031215611fe357600080fd5b87356001600160401b0380821115611ffa57600080fd5b6120068b838c01611e0e565b985060208a013591508082111561201c57600080fd5b506120298a828b01611e0e565b96505061203860408901611df2565b94506060880135935061204d60808901611df2565b925061205b60a08901611df2565b915061206960c08901611df2565b905092959891949750929550565b60006020828403121561208957600080fd5b5035919050565b600060208083528351808285015260005b818110156120bd578581018301518582016040015282016120a1565b818111156120cf576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252600f908201526e0a882b0be92a6bea89e9ebe90928e9608b1b604082015260600190565b6020808252602e908201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160408201526d191e481a5b9a5d1a585b1a5e995960921b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156121a4576121a461223c565b500190565b6000826121c657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156121e5576121e561223c565b500290565b6000828210156121fc576121fc61223c565b500390565b600181811c9082168061221557607f821691505b6020821081141561223657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa26469706673582212202a050bfd9d7f5c6efb596052b5c3ca62399d87885fc27c3d1a1a31637028296d64736f6c63430008060033
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.