Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
20,000,000 UEC
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
UnitedEmirateCoin
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-08 */ //import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/ERC20.sol"; // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); } /** * @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 guidelines: functions revert instead * of 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(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: * * - `to` 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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 to 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 { } } //import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.4.0-solc-0.7/contracts/token/ERC20/ERC20Burnable.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 ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @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 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } contract Ownable { address public owner; event onOwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { owner = msg.sender; } modifier onlyOwner() { require(msg.sender == owner); _; } function transferOwnership(address _newOwner) public onlyOwner { require(_newOwner != address(0)); emit onOwnershipTransferred(owner, _newOwner); owner = _newOwner; } } contract UnitedEmirateCoin is ERC20Burnable, Ownable { using SafeMath for uint256; uint256 public ADMIN_TOKEN = 9000000 * 10**18; /*Admin supply = 9M */ uint256 public PRESALE_TOKEN = 10000000 * 10**18; /*Token Presale = 10M */ uint256 public AIRDROP_TOKEN = 1000000 * 10**18; /*Airdrop supply= 1M */ constructor () ERC20("United Emirate Coin", "UEC") { _mint(owner, ADMIN_TOKEN); _mint(address(this), PRESALE_TOKEN + AIRDROP_TOKEN); } receive() external payable { if(msg.value == 0){ airdrop(); }else { buyToken(); } } /*Enable Purchase Counter*/ bool public purchaseCounter = false; function enablePurchaseCounter() public onlyOwner { purchaseCounter = true; } function disablePurchaseCounter() public onlyOwner { purchaseCounter = false; } /*AIR DROP*/ mapping (address => bool) internal airdropReceivedList; bool public airdropEnabled = false; uint256 public totalAirdrop; function airdrop() public payable { uint256 airdropAmount = 50 * (10 ** uint256(decimals())); require(airdropEnabled, "Airdrop is disabled"); require(airdropReceivedList[msg.sender] == false, "You already received airdrop"); require(airdropAmount.add(totalAirdrop) <= AIRDROP_TOKEN , "Exceed total token for airdrop"); require(balanceOf(address(this)) >= airdropAmount , "Balance is not enough for airdrop"); _transfer(address(this), msg.sender, airdropAmount); airdropReceivedList[msg.sender] = true; totalAirdrop = totalAirdrop.add(airdropAmount); } function startAirDrop() public onlyOwner { airdropEnabled = true; } function stopAirDrop() public onlyOwner { airdropEnabled = false; } function endAirDrop() public onlyOwner { airdropEnabled = false; _transfer(address(this), owner, AIRDROP_TOKEN.sub(totalAirdrop)); } /* PRESALE */ bool public crowdSaleEnabled = false; uint256 public PRESALE_TOKEN_SOLD = 0; uint256 public RATE = 160000; // Token price: 1ETH= 160000 UEC uint256 public MAX_PURCHASE = 10 * 10**18; //Maximum ETH per wallet: 10ETH mapping(address => uint256) public totalPurchased; event CrowdSaleStart(uint256 PRESALE_TOKEN, uint256 rate); event CrowdSalePause(uint256 PRESALE_TOKEN, uint256 rate); event CrowdSaleEnd(uint256 PRESALE_TOKEN, uint256 rate); event TokenPurchase(address buyer, uint256 amount); function startCrowdsale() public onlyOwner { crowdSaleEnabled = true; emit CrowdSaleStart(PRESALE_TOKEN, RATE); } function pauseCrowdsale() public onlyOwner { crowdSaleEnabled = false; emit CrowdSalePause(PRESALE_TOKEN, RATE); } function endCrowdsale() public onlyOwner { crowdSaleEnabled = false; _transfer(address(this), owner, PRESALE_TOKEN.sub(PRESALE_TOKEN_SOLD)); emit CrowdSaleEnd(PRESALE_TOKEN, RATE); } function buyToken() public payable { require(crowdSaleEnabled, "Not started"); require(msg.value >= 10**15, "Minimum is 0.001 ETH to buy presale"); //Minimum ETH per wallet: 0.001ETH require(totalPurchased[msg.sender].add(msg.value) <= MAX_PURCHASE, "limited 10ETH each wallet"); uint256 amountToken = RATE.mul(msg.value); require(amountToken <= PRESALE_TOKEN.sub(PRESALE_TOKEN_SOLD), "Buy amount over remaining of the sale"); _transfer(address(this), address(msg.sender), amountToken); PRESALE_TOKEN_SOLD = PRESALE_TOKEN_SOLD.add(amountToken); totalPurchased[msg.sender] = totalPurchased[msg.sender].add(msg.value); payable(owner).transfer(address(this).balance); emit TokenPurchase(msg.sender, amountToken); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PRESALE_TOKEN","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"CrowdSaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PRESALE_TOKEN","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"CrowdSalePause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"PRESALE_TOKEN","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rate","type":"uint256"}],"name":"CrowdSaleStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"onOwnershipTransferred","type":"event"},{"inputs":[],"name":"ADMIN_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"AIRDROP_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_TOKEN_SOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airdrop","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"airdropEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"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":"buyToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"crowdSaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disablePurchaseCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePurchaseCounter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endCrowdsale","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":"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":"pauseCrowdsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"purchaseCounter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startCrowdsale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopAirDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAirdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526a0771d2fa45345aa90000006006556a084595161401484a00000060075569d3c21bcecceda10000006008556009805460ff19908116909155600b805482169055600d805490911690556000600e5562027100600f55678ac7230489e800006010553480156200007357600080fd5b506040518060400160405280601381526020017f556e6974656420456d697261746520436f696e000000000000000000000000008152506040518060400160405280600381526020016255454360e81b8152508160039080519060200190620000de929190620002cd565b508051620000f4906004906020840190620002cd565b505060058054601260ff1990911617610100600160a81b03191661010033810291909117918290556006546200013993506001600160a01b0391909204169062000157565b6200015130600854600754016200015760201b60201c565b62000379565b6001600160a01b038216620001b3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001c16000838362000266565b620001dd816002546200026b60201b620011ac1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000210918390620011ac6200026b821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b600082820183811015620002c6576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928262000305576000855562000350565b82601f106200032057805160ff191683800117855562000350565b8280016001018555821562000350579182015b828111156200035057825182559160200191906001019062000333565b506200035e92915062000362565b5090565b5b808211156200035e576000815560010162000363565b6118c980620003896000396000f3fe6080604052600436106102125760003560e01c8063664e97041161011857806395d89b41116100a0578063a48217191161006f578063a482171914610229578063a8351c0314610692578063a9059cbb146106a7578063dd62ed3e146106e0578063f2fde38b1461071b57610233565b806395d89b411461061a578063a39953b21461062f578063a3e40ab314610644578063a457c2d71461065957610233565b806372a76f61116100e757806372a76f611461057157806379cc6790146105865780638cf400d5146105bf5780638da5cb5b146105d45780638f847c9c1461060557610233565b8063664e9704146104ff578063707bd28b1461051457806370a08231146105295780637146bd081461055c57610233565b8063283a1e161161019b578063395093511161016a578063395093511461043f57806342966c681461047857806348cfc6c6146104a2578063497aef28146104b75780635ce97dbb146104ea57610233565b8063283a1e16146103e2578063313ce567146103f757806331dbb085146104225780633884d6351461043757610233565b806318160ddd116101e257806318160ddd14610339578063201042891461036057806320540cc5146103755780632095f2d41461038a57806323b872dd1461039f57610233565b8062d412ae14610238578063055680f01461024d57806306fdde0314610276578063095ea7b31461030057610233565b3661023357346102295761022461074e565b610231565b6102316108f8565b005b600080fd5b34801561024457600080fd5b50610231610b1f565b34801561025957600080fd5b50610262610b47565b604080519115158252519081900360200190f35b34801561028257600080fd5b5061028b610b50565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c55781810151838201526020016102ad565b50505050905090810190601f1680156102f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030c57600080fd5b506102626004803603604081101561032357600080fd5b506001600160a01b038135169060200135610be6565b34801561034557600080fd5b5061034e610c04565b60408051918252519081900360200190f35b34801561036c57600080fd5b50610262610c0a565b34801561038157600080fd5b5061034e610c13565b34801561039657600080fd5b50610231610c19565b3480156103ab57600080fd5b50610262600480360360608110156103c257600080fd5b506001600160a01b03813581169160208101359091169060400135610cb1565b3480156103ee57600080fd5b50610231610d38565b34801561040357600080fd5b5061040c610d63565b6040805160ff9092168252519081900360200190f35b34801561042e57600080fd5b50610231610d6c565b61023161074e565b34801561044b57600080fd5b506102626004803603604081101561046257600080fd5b506001600160a01b038135169060200135610d94565b34801561048457600080fd5b506102316004803603602081101561049b57600080fd5b5035610de2565b3480156104ae57600080fd5b50610262610df6565b3480156104c357600080fd5b5061034e600480360360208110156104da57600080fd5b50356001600160a01b0316610dff565b3480156104f657600080fd5b5061034e610e11565b34801561050b57600080fd5b5061034e610e17565b34801561052057600080fd5b50610231610e1d565b34801561053557600080fd5b5061034e6004803603602081101561054c57600080fd5b50356001600160a01b0316610e6d565b34801561056857600080fd5b5061034e610e88565b34801561057d57600080fd5b5061034e610e8e565b34801561059257600080fd5b50610231600480360360408110156105a957600080fd5b506001600160a01b038135169060200135610e94565b3480156105cb57600080fd5b50610231610eee565b3480156105e057600080fd5b506105e9610f19565b604080516001600160a01b039092168252519081900360200190f35b34801561061157600080fd5b5061034e610f2d565b34801561062657600080fd5b5061028b610f33565b34801561063b57600080fd5b50610231610f94565b34801561065057600080fd5b5061034e611000565b34801561066557600080fd5b506102626004803603604081101561067c57600080fd5b506001600160a01b038135169060200135611006565b34801561069e57600080fd5b5061023161106e565b3480156106b357600080fd5b50610262600480360360408110156106ca57600080fd5b506001600160a01b0381351690602001356110d7565b3480156106ec57600080fd5b5061034e6004803603604081101561070357600080fd5b506001600160a01b03813581169160200135166110eb565b34801561072757600080fd5b506102316004803603602081101561073e57600080fd5b50356001600160a01b0316611116565b6000610758610d63565b600b54603260ff928316600a0a029250166107b0576040805162461bcd60e51b8152602060048201526013602482015272105a5c991c9bdc081a5cc8191a5cd8589b1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff1615610815576040805162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656365697665642061697264726f7000000000604482015290519081900360640190fd5b600854600c546108269083906111ac565b1115610879576040805162461bcd60e51b815260206004820152601e60248201527f45786365656420746f74616c20746f6b656e20666f722061697264726f700000604482015290519081900360640190fd5b8061088330610e6d565b10156108c05760405162461bcd60e51b815260040180806020018281038252602181526020018061184e6021913960400191505060405180910390fd5b6108cb30338361120d565b336000908152600a60205260409020805460ff19166001179055600c546108f290826111ac565b600c5550565b600d5460ff1661093d576040805162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b604482015290519081900360640190fd5b66038d7ea4c680003410156109835760405162461bcd60e51b815260040180806020018281038252602381526020018061172f6023913960400191505060405180910390fd5b601054336000908152601160205260409020546109a090346111ac565b11156109f3576040805162461bcd60e51b815260206004820152601960248201527f6c696d6974656420313045544820656163682077616c6c657400000000000000604482015290519081900360640190fd5b600f54600090610a039034611368565b9050610a1c600e546007546113c190919063ffffffff16565b811115610a5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806118056025913960400191505060405180910390fd5b610a6530338361120d565b600e54610a7290826111ac565b600e5533600090815260116020526040902054610a8f90346111ac565b336000908152601160205260408082209290925560055491516101009092046001600160a01b0316914780156108fc0292909190818181858888f19350505050158015610ae0573d6000803e3d6000fd5b50604080513381526020810183905281517ff4b351c7293f3c20fc9912c61adbe9823a6de3162bde18c98eb6feeae232f861929181900390910190a150565b60055461010090046001600160a01b03163314610b3b57600080fd5b600b805460ff19169055565b60095460ff1681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bfa610bf361141e565b8484611422565b5060015b92915050565b60025490565b600b5460ff1681565b600e5481565b60055461010090046001600160a01b03163314610c3557600080fd5b600d805460ff19169055600554600e54600754610c6c9230926101009091046001600160a01b031691610c67916113c1565b61120d565b7f5f0892a20a7819476c043a0de80da596aba26fcce509dd84c03674614c8edaf9600754600f54604051808381526020018281526020019250505060405180910390a1565b6000610cbe84848461120d565b610d2e84610cca61141e565b610d2985604051806060016040528060288152602001611773602891396001600160a01b038a16600090815260016020526040812090610d0861141e565b6001600160a01b03168152602081019190915260400160002054919061150e565b611422565b5060019392505050565b60055461010090046001600160a01b03163314610d5457600080fd5b600b805460ff19166001179055565b60055460ff1690565b60055461010090046001600160a01b03163314610d8857600080fd5b6009805460ff19169055565b6000610bfa610da161141e565b84610d298560016000610db261141e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906111ac565b610df3610ded61141e565b826115a5565b50565b600d5460ff1681565b60116020526000908152604090205481565b600c5481565b600f5481565b60055461010090046001600160a01b03163314610e3957600080fd5b600b805460ff19169055600554600c54600854610e6b9230926101009091046001600160a01b031691610c67916113c1565b565b6001600160a01b031660009081526020819052604090205490565b60105481565b60085481565b6000610ecb8260405180606001604052806024815260200161179b60249139610ec486610ebf61141e565b6110eb565b919061150e565b9050610edf83610ed961141e565b83611422565b610ee983836115a5565b505050565b60055461010090046001600160a01b03163314610f0a57600080fd5b6009805460ff19166001179055565b60055461010090046001600160a01b031681565b60075481565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b60055461010090046001600160a01b03163314610fb057600080fd5b600d805460ff19166001179055600754600f5460408051928352602083019190915280517fa1e232cbdae42c9049a1bf3c09adfea269a2ad8c1a0202218576c3d07a5f36b09281900390910190a1565b60065481565b6000610bfa61101361141e565b84610d298560405180606001604052806025815260200161186f602591396001600061103d61141e565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061150e565b60055461010090046001600160a01b0316331461108a57600080fd5b600d805460ff19169055600754600f5460408051928352602083019190915280517f9be8017fcc7c772de563b9adf4848796f093df9905686eb684a053d2d8e4c54f9281900390910190a1565b6000610bfa6110e461141e565b848461120d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b0316331461113257600080fd5b6001600160a01b03811661114557600080fd5b6005546040516001600160a01b0380841692610100900416907f2e3feca4334579203cd183fe1ced9524940047e5586fe13e8cc5dd1babaf6e8290600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015611206576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0383166112525760405162461bcd60e51b81526004018080602001828103825260258152602001806117e06025913960400191505060405180910390fd5b6001600160a01b0382166112975760405162461bcd60e51b81526004018080602001828103825260238152602001806116a26023913960400191505060405180910390fd5b6112a2838383610ee9565b6112df81604051806060016040528060268152602001611709602691396001600160a01b038616600090815260208190526040902054919061150e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461130e90826111ac565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261137757506000610bfe565b8282028284828161138457fe5b04146112065760405162461bcd60e51b81526004018080602001828103825260218152602001806117526021913960400191505060405180910390fd5b600082821115611418576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b3390565b6001600160a01b0383166114675760405162461bcd60e51b815260040180806020018281038252602481526020018061182a6024913960400191505060405180910390fd5b6001600160a01b0382166114ac5760405162461bcd60e51b81526004018080602001828103825260228152602001806116e76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000818484111561159d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561156257818101518382015260200161154a565b50505050905090810190601f16801561158f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115ea5760405162461bcd60e51b81526004018080602001828103825260218152602001806117bf6021913960400191505060405180910390fd5b6115f682600083610ee9565b611633816040518060600160405280602281526020016116c5602291396001600160a01b038516600090815260208190526040902054919061150e565b6001600160a01b03831660009081526020819052604090205560025461165990826113c1565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e696d756d20697320302e3030312045544820746f206275792070726573616c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737342757920616d6f756e74206f7665722072656d61696e696e67206f66207468652073616c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342616c616e6365206973206e6f7420656e6f75676820666f722061697264726f7045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220454f98f31e91b864a4245d4c68c59a011821c666fb7ab7daa932729b679d02b264736f6c63430007060033
Deployed Bytecode
0x6080604052600436106102125760003560e01c8063664e97041161011857806395d89b41116100a0578063a48217191161006f578063a482171914610229578063a8351c0314610692578063a9059cbb146106a7578063dd62ed3e146106e0578063f2fde38b1461071b57610233565b806395d89b411461061a578063a39953b21461062f578063a3e40ab314610644578063a457c2d71461065957610233565b806372a76f61116100e757806372a76f611461057157806379cc6790146105865780638cf400d5146105bf5780638da5cb5b146105d45780638f847c9c1461060557610233565b8063664e9704146104ff578063707bd28b1461051457806370a08231146105295780637146bd081461055c57610233565b8063283a1e161161019b578063395093511161016a578063395093511461043f57806342966c681461047857806348cfc6c6146104a2578063497aef28146104b75780635ce97dbb146104ea57610233565b8063283a1e16146103e2578063313ce567146103f757806331dbb085146104225780633884d6351461043757610233565b806318160ddd116101e257806318160ddd14610339578063201042891461036057806320540cc5146103755780632095f2d41461038a57806323b872dd1461039f57610233565b8062d412ae14610238578063055680f01461024d57806306fdde0314610276578063095ea7b31461030057610233565b3661023357346102295761022461074e565b610231565b6102316108f8565b005b600080fd5b34801561024457600080fd5b50610231610b1f565b34801561025957600080fd5b50610262610b47565b604080519115158252519081900360200190f35b34801561028257600080fd5b5061028b610b50565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102c55781810151838201526020016102ad565b50505050905090810190601f1680156102f25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030c57600080fd5b506102626004803603604081101561032357600080fd5b506001600160a01b038135169060200135610be6565b34801561034557600080fd5b5061034e610c04565b60408051918252519081900360200190f35b34801561036c57600080fd5b50610262610c0a565b34801561038157600080fd5b5061034e610c13565b34801561039657600080fd5b50610231610c19565b3480156103ab57600080fd5b50610262600480360360608110156103c257600080fd5b506001600160a01b03813581169160208101359091169060400135610cb1565b3480156103ee57600080fd5b50610231610d38565b34801561040357600080fd5b5061040c610d63565b6040805160ff9092168252519081900360200190f35b34801561042e57600080fd5b50610231610d6c565b61023161074e565b34801561044b57600080fd5b506102626004803603604081101561046257600080fd5b506001600160a01b038135169060200135610d94565b34801561048457600080fd5b506102316004803603602081101561049b57600080fd5b5035610de2565b3480156104ae57600080fd5b50610262610df6565b3480156104c357600080fd5b5061034e600480360360208110156104da57600080fd5b50356001600160a01b0316610dff565b3480156104f657600080fd5b5061034e610e11565b34801561050b57600080fd5b5061034e610e17565b34801561052057600080fd5b50610231610e1d565b34801561053557600080fd5b5061034e6004803603602081101561054c57600080fd5b50356001600160a01b0316610e6d565b34801561056857600080fd5b5061034e610e88565b34801561057d57600080fd5b5061034e610e8e565b34801561059257600080fd5b50610231600480360360408110156105a957600080fd5b506001600160a01b038135169060200135610e94565b3480156105cb57600080fd5b50610231610eee565b3480156105e057600080fd5b506105e9610f19565b604080516001600160a01b039092168252519081900360200190f35b34801561061157600080fd5b5061034e610f2d565b34801561062657600080fd5b5061028b610f33565b34801561063b57600080fd5b50610231610f94565b34801561065057600080fd5b5061034e611000565b34801561066557600080fd5b506102626004803603604081101561067c57600080fd5b506001600160a01b038135169060200135611006565b34801561069e57600080fd5b5061023161106e565b3480156106b357600080fd5b50610262600480360360408110156106ca57600080fd5b506001600160a01b0381351690602001356110d7565b3480156106ec57600080fd5b5061034e6004803603604081101561070357600080fd5b506001600160a01b03813581169160200135166110eb565b34801561072757600080fd5b506102316004803603602081101561073e57600080fd5b50356001600160a01b0316611116565b6000610758610d63565b600b54603260ff928316600a0a029250166107b0576040805162461bcd60e51b8152602060048201526013602482015272105a5c991c9bdc081a5cc8191a5cd8589b1959606a1b604482015290519081900360640190fd5b336000908152600a602052604090205460ff1615610815576040805162461bcd60e51b815260206004820152601c60248201527f596f7520616c72656164792072656365697665642061697264726f7000000000604482015290519081900360640190fd5b600854600c546108269083906111ac565b1115610879576040805162461bcd60e51b815260206004820152601e60248201527f45786365656420746f74616c20746f6b656e20666f722061697264726f700000604482015290519081900360640190fd5b8061088330610e6d565b10156108c05760405162461bcd60e51b815260040180806020018281038252602181526020018061184e6021913960400191505060405180910390fd5b6108cb30338361120d565b336000908152600a60205260409020805460ff19166001179055600c546108f290826111ac565b600c5550565b600d5460ff1661093d576040805162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b604482015290519081900360640190fd5b66038d7ea4c680003410156109835760405162461bcd60e51b815260040180806020018281038252602381526020018061172f6023913960400191505060405180910390fd5b601054336000908152601160205260409020546109a090346111ac565b11156109f3576040805162461bcd60e51b815260206004820152601960248201527f6c696d6974656420313045544820656163682077616c6c657400000000000000604482015290519081900360640190fd5b600f54600090610a039034611368565b9050610a1c600e546007546113c190919063ffffffff16565b811115610a5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806118056025913960400191505060405180910390fd5b610a6530338361120d565b600e54610a7290826111ac565b600e5533600090815260116020526040902054610a8f90346111ac565b336000908152601160205260408082209290925560055491516101009092046001600160a01b0316914780156108fc0292909190818181858888f19350505050158015610ae0573d6000803e3d6000fd5b50604080513381526020810183905281517ff4b351c7293f3c20fc9912c61adbe9823a6de3162bde18c98eb6feeae232f861929181900390910190a150565b60055461010090046001600160a01b03163314610b3b57600080fd5b600b805460ff19169055565b60095460ff1681565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b820191906000526020600020905b815481529060010190602001808311610bbf57829003601f168201915b5050505050905090565b6000610bfa610bf361141e565b8484611422565b5060015b92915050565b60025490565b600b5460ff1681565b600e5481565b60055461010090046001600160a01b03163314610c3557600080fd5b600d805460ff19169055600554600e54600754610c6c9230926101009091046001600160a01b031691610c67916113c1565b61120d565b7f5f0892a20a7819476c043a0de80da596aba26fcce509dd84c03674614c8edaf9600754600f54604051808381526020018281526020019250505060405180910390a1565b6000610cbe84848461120d565b610d2e84610cca61141e565b610d2985604051806060016040528060288152602001611773602891396001600160a01b038a16600090815260016020526040812090610d0861141e565b6001600160a01b03168152602081019190915260400160002054919061150e565b611422565b5060019392505050565b60055461010090046001600160a01b03163314610d5457600080fd5b600b805460ff19166001179055565b60055460ff1690565b60055461010090046001600160a01b03163314610d8857600080fd5b6009805460ff19169055565b6000610bfa610da161141e565b84610d298560016000610db261141e565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906111ac565b610df3610ded61141e565b826115a5565b50565b600d5460ff1681565b60116020526000908152604090205481565b600c5481565b600f5481565b60055461010090046001600160a01b03163314610e3957600080fd5b600b805460ff19169055600554600c54600854610e6b9230926101009091046001600160a01b031691610c67916113c1565b565b6001600160a01b031660009081526020819052604090205490565b60105481565b60085481565b6000610ecb8260405180606001604052806024815260200161179b60249139610ec486610ebf61141e565b6110eb565b919061150e565b9050610edf83610ed961141e565b83611422565b610ee983836115a5565b505050565b60055461010090046001600160a01b03163314610f0a57600080fd5b6009805460ff19166001179055565b60055461010090046001600160a01b031681565b60075481565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bdc5780601f10610bb157610100808354040283529160200191610bdc565b60055461010090046001600160a01b03163314610fb057600080fd5b600d805460ff19166001179055600754600f5460408051928352602083019190915280517fa1e232cbdae42c9049a1bf3c09adfea269a2ad8c1a0202218576c3d07a5f36b09281900390910190a1565b60065481565b6000610bfa61101361141e565b84610d298560405180606001604052806025815260200161186f602591396001600061103d61141e565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061150e565b60055461010090046001600160a01b0316331461108a57600080fd5b600d805460ff19169055600754600f5460408051928352602083019190915280517f9be8017fcc7c772de563b9adf4848796f093df9905686eb684a053d2d8e4c54f9281900390910190a1565b6000610bfa6110e461141e565b848461120d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60055461010090046001600160a01b0316331461113257600080fd5b6001600160a01b03811661114557600080fd5b6005546040516001600160a01b0380841692610100900416907f2e3feca4334579203cd183fe1ced9524940047e5586fe13e8cc5dd1babaf6e8290600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b600082820183811015611206576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b0383166112525760405162461bcd60e51b81526004018080602001828103825260258152602001806117e06025913960400191505060405180910390fd5b6001600160a01b0382166112975760405162461bcd60e51b81526004018080602001828103825260238152602001806116a26023913960400191505060405180910390fd5b6112a2838383610ee9565b6112df81604051806060016040528060268152602001611709602691396001600160a01b038616600090815260208190526040902054919061150e565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461130e90826111ac565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261137757506000610bfe565b8282028284828161138457fe5b04146112065760405162461bcd60e51b81526004018080602001828103825260218152602001806117526021913960400191505060405180910390fd5b600082821115611418576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b3390565b6001600160a01b0383166114675760405162461bcd60e51b815260040180806020018281038252602481526020018061182a6024913960400191505060405180910390fd5b6001600160a01b0382166114ac5760405162461bcd60e51b81526004018080602001828103825260228152602001806116e76022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6000818484111561159d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561156257818101518382015260200161154a565b50505050905090810190601f16801561158f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0382166115ea5760405162461bcd60e51b81526004018080602001828103825260218152602001806117bf6021913960400191505060405180910390fd5b6115f682600083610ee9565b611633816040518060600160405280602281526020016116c5602291396001600160a01b038516600090815260208190526040902054919061150e565b6001600160a01b03831660009081526020819052604090205560025461165990826113c1565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654d696e696d756d20697320302e3030312045544820746f206275792070726573616c65536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737342757920616d6f756e74206f7665722072656d61696e696e67206f66207468652073616c6545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737342616c616e6365206973206e6f7420656e6f75676820666f722061697264726f7045524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220454f98f31e91b864a4245d4c68c59a011821c666fb7ab7daa932729b679d02b264736f6c63430007060033
Deployed Bytecode Sourcemap
23861:3995:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24412:9;24409:99;;24442:9;:7;:9::i;:::-;24409:99;;;24487:10;:8;:10::i;:::-;23861:3995;;;;;25696:81;;;;;;;;;;;;;:::i;24556:35::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;13234:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15380:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15380:169:0;;;;;;;;:::i;14333:108::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;24881:34;;;;;;;;;;;;;:::i;26010:37::-;;;;;;;;;;;;;:::i;26799:220::-;;;;;;;;;;;;;:::i;16031:321::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16031:321:0;;;;;;;;;;;;;;;;;:::i;25606:82::-;;;;;;;;;;;;;:::i;14177:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24700:94;;;;;;;;;;;;;:::i;24958:640::-;;;:::i;16761:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16761:218:0;;;;;;;;:::i;22654:91::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22654:91:0;;:::i;25967:36::-;;;;;;;;;;;;;:::i;26203:49::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;26203:49:0;-1:-1:-1;;;;;26203:49:0;;:::i;24922:27::-;;;;;;;;;;;;;:::i;26054:28::-;;;;;;;;;;;;;:::i;25785:155::-;;;;;;;;;;;;;:::i;14504:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14504:127:0;-1:-1:-1;;;;;14504:127:0;;:::i;26123:41::-;;;;;;;;;;;;;:::i;24124:50::-;;;;;;;;;;;;;:::i;23064:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23064:295:0;;;;;;;;:::i;24600:92::-;;;;;;;;;;;;;:::i;23392:20::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;23392:20:0;;;;;;;;;;;;;;24041:51;;;;;;;;;;;;;:::i;13444:95::-;;;;;;;;;;;;;:::i;26510:136::-;;;;;;;;;;;;;:::i;23960:50::-;;;;;;;;;;;;;:::i;17482:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17482:269:0;;;;;;;;:::i;26654:137::-;;;;;;;;;;;;;:::i;14844:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14844:175:0;;;;;;;;:::i;15082:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15082:151:0;;;;;;;;;;:::i;23654:198::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23654:198:0;-1:-1:-1;;;;;23654:198:0;;:::i;24958:640::-;25003:21;25047:10;:8;:10::i;:::-;25088:14;;25027:2;25039:19;;;;25033:2;:25;25027:32;;-1:-1:-1;25088:14:0;25080:46;;;;;-1:-1:-1;;;25080:46:0;;;;;;;;;;;;-1:-1:-1;;;25080:46:0;;;;;;;;;;;;;;;25165:10;25145:31;;;;:19;:31;;;;;;;;:40;25137:81;;;;;-1:-1:-1;;;25137:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25272:13;;25255:12;;25237:31;;:13;;:17;:31::i;:::-;:48;;25229:92;;;;;-1:-1:-1;;;25229:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25368:13;25340:24;25358:4;25340:9;:24::i;:::-;:41;;25332:88;;;;-1:-1:-1;;;25332:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25433:51;25451:4;25458:10;25470:13;25433:9;:51::i;:::-;25515:10;25495:31;;;;:19;:31;;;;;:38;;-1:-1:-1;;25495:38:0;25529:4;25495:38;;;25559:12;;:31;;25576:13;25559:16;:31::i;:::-;25544:12;:46;-1:-1:-1;24958:640:0:o;27027:826::-;27091:16;;;;27083:40;;;;;-1:-1:-1;;;27083:40:0;;;;;;;;;;;;-1:-1:-1;;;27083:40:0;;;;;;;;;;;;;;;27155:6;27142:9;:19;;27134:67;;;;-1:-1:-1;;;27134:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27300:12;;27270:10;27255:26;;;;:14;:26;;;;;;:41;;27286:9;27255:30;:41::i;:::-;:57;;27247:95;;;;;-1:-1:-1;;;27247:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27377:4;;27355:19;;27377;;27386:9;27377:8;:19::i;:::-;27355:41;;27430:37;27448:18;;27430:13;;:17;;:37;;;;:::i;:::-;27415:11;:52;;27407:102;;;;-1:-1:-1;;;27407:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27522:58;27540:4;27555:10;27568:11;27522:9;:58::i;:::-;27612:18;;:35;;27635:11;27612:22;:35::i;:::-;27591:18;:56;27702:10;27687:26;;;;:14;:26;;;;;;:41;;27718:9;27687:30;:41::i;:::-;27673:10;27658:26;;;;:14;:26;;;;;;:70;;;;27751:5;;27743:46;;27751:5;;;;-1:-1:-1;;;;;27751:5:0;;27767:21;27743:46;;;;;27767:21;;27743:46;;27658:26;27743:46;27767:21;27751:5;27743:46;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27807:38:0;;;27821:10;27807:38;;;;;;;;;;;;;;;;;;;;;27027:826;:::o;25696:81::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;25747:14:::1;:22:::0;;-1:-1:-1;;25747:22:0::1;::::0;;25696:81::o;24556:35::-;;;;;;:::o;13234:91::-;13312:5;13305:12;;;;;;;;-1:-1:-1;;13305:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13279:13;;13305:12;;13312:5;;13305:12;;13312:5;13305:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13234:91;:::o;15380:169::-;15463:4;15480:39;15489:12;:10;:12::i;:::-;15503:7;15512:6;15480:8;:39::i;:::-;-1:-1:-1;15537:4:0;15380:169;;;;;:::o;14333:108::-;14421:12;;14333:108;:::o;24881:34::-;;;;;;:::o;26010:37::-;;;;:::o;26799:220::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;26851:16:::1;:24:::0;;-1:-1:-1;;26851:24:0::1;::::0;;26911:5:::1;::::0;26936:18:::1;::::0;26918:13:::1;::::0;26886:70:::1;::::0;26904:4:::1;::::0;26851:24:::1;26911:5:::0;;::::1;-1:-1:-1::0;;;;;26911:5:0::1;::::0;26918:37:::1;::::0;:17:::1;:37::i;:::-;26886:9;:70::i;:::-;26978:33;26991:13;;27006:4;;26978:33;;;;;;;;;;;;;;;;;;;;;;;;26799:220::o:0;16031:321::-;16137:4;16154:36;16164:6;16172:9;16183:6;16154:9;:36::i;:::-;16201:121;16210:6;16218:12;:10;:12::i;:::-;16232:89;16270:6;16232:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16232:19:0;;;;;;:11;:19;;;;;;16252:12;:10;:12::i;:::-;-1:-1:-1;;;;;16232:33:0;;;;;;;;;;;;-1:-1:-1;16232:33:0;;;:89;:37;:89::i;:::-;16201:8;:121::i;:::-;-1:-1:-1;16340:4:0;16031:321;;;;;:::o;25606:82::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;25659:14:::1;:21:::0;;-1:-1:-1;;25659:21:0::1;25676:4;25659:21;::::0;;25606:82::o;14177:91::-;14251:9;;;;14177:91;:::o;24700:94::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;24763:15:::1;:23:::0;;-1:-1:-1;;24763:23:0::1;::::0;;24700:94::o;16761:218::-;16849:4;16866:83;16875:12;:10;:12::i;:::-;16889:7;16898:50;16937:10;16898:11;:25;16910:12;:10;:12::i;:::-;-1:-1:-1;;;;;16898:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;16898:25:0;;;:34;;;;;;;;;;;:38;:50::i;22654:91::-;22710:27;22716:12;:10;:12::i;:::-;22730:6;22710:5;:27::i;:::-;22654:91;:::o;25967:36::-;;;;;;:::o;26203:49::-;;;;;;;;;;;;;:::o;24922:27::-;;;;:::o;26054:28::-;;;;:::o;25785:155::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;25835:14:::1;:22:::0;;-1:-1:-1;;25835:22:0::1;::::0;;25893:5:::1;::::0;25918:12:::1;::::0;25900:13:::1;::::0;25868:64:::1;::::0;25886:4:::1;::::0;25835:22:::1;25893:5:::0;;::::1;-1:-1:-1::0;;;;;25893:5:0::1;::::0;25900:31:::1;::::0;:17:::1;:31::i;25868:64::-;25785:155::o:0;14504:127::-;-1:-1:-1;;;;;14605:18:0;14578:7;14605:18;;;;;;;;;;;;14504:127::o;26123:41::-;;;;:::o;24124:50::-;;;;:::o;23064:295::-;23141:26;23170:84;23207:6;23170:84;;;;;;;;;;;;;;;;;:32;23180:7;23189:12;:10;:12::i;:::-;23170:9;:32::i;:::-;:36;:84;:36;:84::i;:::-;23141:113;;23267:51;23276:7;23285:12;:10;:12::i;:::-;23299:18;23267:8;:51::i;:::-;23329:22;23335:7;23344:6;23329:5;:22::i;:::-;23064:295;;;:::o;24600:92::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;24662:15:::1;:22:::0;;-1:-1:-1;;24662:22:0::1;24680:4;24662:22;::::0;;24600:92::o;23392:20::-;;;;;;-1:-1:-1;;;;;23392:20:0;;:::o;24041:51::-;;;;:::o;13444:95::-;13524:7;13517:14;;;;;;;;-1:-1:-1;;13517:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13491:13;;13517:14;;13524:7;;13517:14;;13524:7;13517:14;;;;;;;;;;;;;;;;;;;;;;;;26510:136;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;26564:16:::1;:23:::0;;-1:-1:-1;;26564:23:0::1;26583:4;26564:23;::::0;;26618:13:::1;::::0;26633:4:::1;::::0;26603:35:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;::::1;26510:136::o:0;23960:50::-;;;;:::o;17482:269::-;17575:4;17592:129;17601:12;:10;:12::i;:::-;17615:7;17624:96;17663:15;17624:96;;;;;;;;;;;;;;;;;:11;:25;17636:12;:10;:12::i;:::-;-1:-1:-1;;;;;17624:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;17624:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;26654:137::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;26708:16:::1;:24:::0;;-1:-1:-1;;26708:24:0::1;::::0;;26763:13:::1;::::0;26778:4:::1;::::0;26748:35:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;::::1;::::0;;;;;;;;::::1;26654:137::o:0;14844:175::-;14930:4;14947:42;14957:12;:10;:12::i;:::-;14971:9;14982:6;14947:9;:42::i;15082:151::-;-1:-1:-1;;;;;15198:18:0;;;15171:7;15198:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15082:151::o;23654:198::-;23622:5;;;;;-1:-1:-1;;;;;23622:5:0;23608:10;:19;23600:28;;;;;;-1:-1:-1;;;;;23736:23:0;::::1;23728:32;;;::::0;::::1;;23799:5;::::0;23776:40:::1;::::0;-1:-1:-1;;;;;23776:40:0;;::::1;::::0;23799:5:::1;::::0;::::1;;::::0;23776:40:::1;::::0;;;::::1;23827:5;:17:::0;;-1:-1:-1;;;;;23827:17:0;;::::1;;;-1:-1:-1::0;;;;;;23827:17:0;;::::1;::::0;;;::::1;::::0;;23654:198::o;3792:179::-;3850:7;3882:5;;;3906:6;;;;3898:46;;;;;-1:-1:-1;;;3898:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;3962:1;3792:179;-1:-1:-1;;;3792:179:0:o;18241:539::-;-1:-1:-1;;;;;18347:20:0;;18339:70;;;;-1:-1:-1;;;18339:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18428:23:0;;18420:71;;;;-1:-1:-1;;;18420:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18504:47;18525:6;18533:9;18544:6;18504:20;:47::i;:::-;18584:71;18606:6;18584:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18584:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;18564:17:0;;;:9;:17;;;;;;;;;;;:91;;;;18689:20;;;;;;;:32;;18714:6;18689:24;:32::i;:::-;-1:-1:-1;;;;;18666:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;18737:35;;;;;;;18666:20;;18737:35;;;;;;;;;;;;;18241:539;;;:::o;4671:220::-;4729:7;4753:6;4749:20;;-1:-1:-1;4768:1:0;4761:8;;4749:20;4792:5;;;4796:1;4792;:5;:1;4816:5;;;;;:10;4808:56;;;;-1:-1:-1;;;4808:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4254:158;4312:7;4345:1;4340;:6;;4332:49;;;;;-1:-1:-1;;;4332:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4399:5:0;;;4254:158::o;734:106::-;822:10;734:106;:::o;20629:346::-;-1:-1:-1;;;;;20731:19:0;;20723:68;;;;-1:-1:-1;;;20723:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20810:21:0;;20802:68;;;;-1:-1:-1;;;20802:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20883:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20935:32;;;;;;;;;;;;;;;;;20629:346;;;:::o;6619:166::-;6705:7;6741:12;6733:6;;;;6725:29;;;;-1:-1:-1;;;6725:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6772:5:0;;;6619:166::o;19773:418::-;-1:-1:-1;;;;;19857:21:0;;19849:67;;;;-1:-1:-1;;;19849:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19929:49;19950:7;19967:1;19971:6;19929:20;:49::i;:::-;20012:68;20035:6;20012:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20012:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;19991:18:0;;:9;:18;;;;;;;;;;:89;20106:12;;:24;;20123:6;20106:16;:24::i;:::-;20091:12;:39;20146:37;;;;;;;;20172:1;;-1:-1:-1;;;;;20146:37:0;;;;;;;;;;;;19773:418;;:::o
Swarm Source
ipfs://454f98f31e91b864a4245d4c68c59a011821c666fb7ab7daa932729b679d02b2
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.