Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
25,000 Cryotoken
Holders
51
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
17.29175819967930011 CryotokenValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Cryotoken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-07-22 */ pragma solidity ^0.6.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; } } // File: @openzeppelin/contracts/access/Ownable.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @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); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: contracts/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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; using Address for address; mapping (address => uint256) public _balances; mapping (address => mapping (address => uint256)) internal _allowances; uint256 public _totalSupply = 25000000000000000000000; 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) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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 returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must hfave 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; } 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"); require(amount > 0, "Transfer amount must be greater than zero"); _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); } 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 { _decimals = decimals_; } /** * * 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 { } } // File: contracts/CRYOTOKEN.sol pragma solidity ^0.6.2; contract Cryotoken is ERC20, Ownable { constructor() public ERC20("CRYO", "Cryotoken") { // Symbol and Name _balances[_msgSender()] = _totalSupply; emit Transfer(address(0), _msgSender(), _totalSupply); } event TradingEnabled(bool enabled); event TransferFeeChanged(uint256 newFee); event FeeRecipientChange(address account); event PairAddressSet(address account); event AddFeeException(address account); event RemoveFeeException(address account); bool private activeFee = false; bool public tradingEnabled = false; uint256 public launchedAt; uint256 public transferFee; address public feeRecipient; address private pairAddress; // Exception to transfer fees, for example for Uniswap contracts. mapping (address => uint256) private lastBuy; mapping (address => bool) public feeException; function enableTrading() external onlyOwner() { tradingEnabled = true; TradingEnabled(true); launchedAt = now; } function addFeeException(address account) public onlyOwner { feeException[account] = true; emit AddFeeException(account); } function removeFeeException(address account) public onlyOwner { feeException[account] = false; emit RemoveFeeException(account); } function setTransferFee(uint256 fee) public onlyOwner { require(fee <= 1400, "Fee cannot be greater than 14%"); if (fee == 0) { activeFee = false; } else { activeFee = true; } transferFee = fee; emit TransferFeeChanged(fee); } function setTransferFeeRecipient(address account) public onlyOwner { feeRecipient = account; emit FeeRecipientChange(account); } function setPairAddress(address account) public onlyOwner { pairAddress = account; emit PairAddressSet(account); } function _cooldownTimer(address recipient, uint256 amount) internal { if (recipient != pairAddress && recipient != feeRecipient) { require(now > launchedAt + 3 minutes || amount <= 5e19); require(now > launchedAt + 3 minutes || block.timestamp - lastBuy[recipient] > 60); lastBuy[recipient] = block.timestamp; } } // Transfer recipient recives amount - fee function transfer(address recipient, uint256 amount) public override returns (bool) { if(_msgSender() != owner() && recipient != owner()) { require(tradingEnabled, "Trading is not enabled"); _cooldownTimer(recipient, amount); } if (activeFee && feeException[_msgSender()] == false) { if (((now - launchedAt)/3600 % 4) == 0) { transferFee = 600; } else if (((now - launchedAt)/3600 % 4) == 1) { transferFee = 800; } else if (((now - launchedAt)/3600 % 4) == 2) { transferFee = 1000; } else if (((now - launchedAt)/3600 % 4) == 3) { transferFee = 1200; } uint256 fee = transferFee.mul(amount).div(10000); uint amountLessFee = amount.sub(fee); _transfer(_msgSender(), recipient, amountLessFee); _transfer(_msgSender(), feeRecipient, fee); } else { _transfer(_msgSender(), recipient, amount); } return true; } // TransferFrom recipient recives amount, sender's account is debited amount + fee function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { if(sender != owner() && recipient != owner()) { require(tradingEnabled, "Trading is not enabled"); } if (activeFee && feeException[recipient] == false) { if (((now - launchedAt)/3600 % 4) == 0) { transferFee = 600; } else if (((now - launchedAt)/3600 % 4) == 1) { transferFee = 800; } else if (((now - launchedAt)/3600 % 4) == 2) { transferFee = 1000; } else if (((now - launchedAt)/3600 % 4) == 3) { transferFee = 1200; } uint256 fee = transferFee.mul(amount).div(10000); uint amountLessFee = amount.sub(fee); _transfer(sender, recipient, amountLessFee); _transfer(sender, feeRecipient, fee); } else { _transfer(sender, recipient, amount); } _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"AddFeeException","type":"event"},{"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":"address","name":"account","type":"address"}],"name":"FeeRecipientChange","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":false,"internalType":"address","name":"account","type":"address"}],"name":"PairAddressSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"RemoveFeeException","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"TradingEnabled","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":false,"internalType":"uint256","name":"newFee","type":"uint256"}],"name":"TransferFeeChanged","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","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":"account","type":"address"}],"name":"addFeeException","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":[],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"feeException","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeFeeException","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"setTransferFeeRecipient","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":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]
Contract Creation Code
608060405269054b40b1f852bda000006002556005805461ffff60a81b191690553480156200002d57600080fd5b5060408051808201825260048152634352594f60e01b60208083019182528351808501909452600984526821b93cb7ba37b5b2b760b91b9084015281519192916200007b916003916200018e565b508051620000919060049060208401906200018e565b50506005805460ff19166012179055506000620000ad6200018a565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600254600080620001136200018a565b6001600160a01b03168152602081019190915260400160002055620001376200018a565b6001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6002546040518082815260200191505060405180910390a36200022a565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001d157805160ff191683800117855562000201565b8280016001018555821562000201579182015b8281111562000201578251825591602001919060010190620001e4565b506200020f92915062000213565b5090565b5b808211156200020f576000815560010162000214565b6119cd806200023a6000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063acb2ad6f11610071578063acb2ad6f146104da578063bf56b371146104e2578063dd62ed3e146104ea578063f2fde38b14610518576101a9565b8063a457c2d71461045c578063a9059cbb14610488578063ac4dcb76146104b4576101a9565b80638da5cb5b116100d35780638da5cb5b146104095780638f02bb5b1461041157806395d89b411461042e578063a22d483214610436576101a9565b806370a08231146103d3578063715018a6146103f95780638a8c523c14610401576101a9565b8063313ce567116101665780634690484011610140578063469048401461035b578063498ffb901461037f5780634ada218b146103a55780636ebcf607146103ad576101a9565b8063313ce5671461030957806339509351146103275780633eaaf86b14610353576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806323b872dd1461028557806325cf1b74146102bb5780633098cdfc146102e3575b600080fd5b6101b661053e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356105d4565b604080519115158252519081900360200190f35b6102736105f2565b60408051918252519081900360200190f35b6102576004803603606081101561029b57600080fd5b506001600160a01b038135811691602081013590911690604001356105f8565b6102e1600480360360208110156102d157600080fd5b50356001600160a01b031661085d565b005b6102e1600480360360208110156102f957600080fd5b50356001600160a01b0316610912565b6103116109ca565b6040805160ff9092168252519081900360200190f35b6102576004803603604081101561033d57600080fd5b506001600160a01b0381351690602001356109d3565b610273610a21565b610363610a27565b604080516001600160a01b039092168252519081900360200190f35b6102576004803603602081101561039557600080fd5b50356001600160a01b0316610a36565b610257610a4b565b610273600480360360208110156103c357600080fd5b50356001600160a01b0316610a5b565b610273600480360360208110156103e957600080fd5b50356001600160a01b0316610a6d565b6102e1610a88565b6102e1610b35565b610363610bdf565b6102e16004803603602081101561042757600080fd5b5035610bf3565b6101b6610d0d565b6102e16004803603602081101561044c57600080fd5b50356001600160a01b0316610d6e565b6102576004803603604081101561047257600080fd5b506001600160a01b038135169060200135610e1f565b6102576004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610e87565b6102e1600480360360208110156104ca57600080fd5b50356001600160a01b031661109d565b61027361114e565b610273611154565b6102736004803603604081101561050057600080fd5b506001600160a01b038135811691602001351661115a565b6102e16004803603602081101561052e57600080fd5b50356001600160a01b0316611185565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105e86105e161128e565b8484611292565b5060015b92915050565b60025490565b6000610602610bdf565b6001600160a01b0316846001600160a01b03161415801561063c5750610626610bdf565b6001600160a01b0316836001600160a01b031614155b1561069857600554600160b01b900460ff16610698576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b600554600160a81b900460ff1680156106ca57506001600160a01b0383166000908152600b602052604090205460ff16155b156107d8576004610e106006544203816106e057fe5b04816106e857fe5b066106f85761025860075561077b565b6004610e1060065442038161070957fe5b048161071157fe5b06600114156107255761032060075561077b565b6004610e1060065442038161073657fe5b048161073e57fe5b0660021415610752576103e860075561077b565b6004610e1060065442038161076357fe5b048161076b57fe5b066003141561077b576104b06007555b600061079e6127106107988560075461137e90919063ffffffff16565b906113de565b905060006107ac8483611420565b90506107b9868683611462565b6008546107d19087906001600160a01b031684611462565b50506107e3565b6107e3848484611462565b610853846107ef61128e565b61084e856040518060600160405280602881526020016118b9602891396001600160a01b038a1660009081526001602052604081209061082d61128e565b6001600160a01b0316815260208101919091526040016000205491906115fc565b611292565b5060019392505050565b61086561128e565b60055461010090046001600160a01b039081169116146108ba576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517f5f6f41849ec25c114eb487c7350582993fe237c055d4b85a0162562ebff90cfe9281900390910190a150565b61091a61128e565b60055461010090046001600160a01b0390811691161461096f576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517fae0993f85474e26fe71b5d453f1067e41f5a659baa13972d2fe86f7232f8cd139281900390910190a150565b60055460ff1690565b60006105e86109e061128e565b8461084e85600160006109f161128e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611693565b60025481565b6008546001600160a01b031681565b600b6020526000908152604090205460ff1681565b600554600160b01b900460ff1681565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610a9061128e565b60055461010090046001600160a01b03908116911614610ae5576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610b3d61128e565b60055461010090046001600160a01b03908116911614610b92576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6005805460ff60b01b1916600160b01b179055604080516001815290517fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9181900360200190a142600655565b60055461010090046001600160a01b031690565b610bfb61128e565b60055461010090046001600160a01b03908116911614610c50576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b610578811115610ca7576040805162461bcd60e51b815260206004820152601e60248201527f4665652063616e6e6f742062652067726561746572207468616e203134250000604482015290519081900360640190fd5b80610cbe576005805460ff60a81b19169055610cd2565b6005805460ff60a81b1916600160a81b1790555b60078190556040805182815290517f0496ed1e61eb69727f9659a8e859288db4758ffb1f744d1c1424634f90a257f49181900360200190a150565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ca5780601f1061059f576101008083540402835291602001916105ca565b610d7661128e565b60055461010090046001600160a01b03908116911614610dcb576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b600980546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f5d338516e06e286e70c606dc31a9818bc3ecf6eb9995eaa5c4c7cae87e86adda9181900360200190a150565b60006105e8610e2c61128e565b8461084e856040518060600160405280602581526020016119736025913960016000610e5661128e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906115fc565b6000610e91610bdf565b6001600160a01b0316610ea261128e565b6001600160a01b031614158015610ed25750610ebc610bdf565b6001600160a01b0316836001600160a01b031614155b15610f3857600554600160b01b900460ff16610f2e576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b610f3883836116ed565b600554600160a81b900460ff168015610f775750600b6000610f5861128e565b6001600160a01b0316815260208101919091526040016000205460ff16155b1561108b576004610e10600654420381610f8d57fe5b0481610f9557fe5b06610fa557610258600755611028565b6004610e10600654420381610fb657fe5b0481610fbe57fe5b0660011415610fd257610320600755611028565b6004610e10600654420381610fe357fe5b0481610feb57fe5b0660021415610fff576103e8600755611028565b6004610e1060065442038161101057fe5b048161101857fe5b0660031415611028576104b06007555b60006110456127106107988560075461137e90919063ffffffff16565b905060006110538483611420565b905061106761106061128e565b8683611462565b61108461107261128e565b6008546001600160a01b031684611462565b50506105e8565b6105e861109661128e565b8484611462565b6110a561128e565b60055461010090046001600160a01b039081169116146110fa576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b600880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f59dfe0cb0c2ca886f38478780683af126e4c05ba43ee640cb971eb7c736a3b0a9181900360200190a150565b60075481565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61118d61128e565b60055461010090046001600160a01b039081169116146111e2576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166112275760405162461bcd60e51b815260040180806020018281038252602681526020018061182a6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166112d75760405162461bcd60e51b815260040180806020018281038252602481526020018061194f6024913960400191505060405180910390fd5b6001600160a01b03821661131c5760405162461bcd60e51b81526004018080602001828103825260228152602001806118506022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261138d575060006105ec565b8282028284828161139a57fe5b04146113d75760405162461bcd60e51b81526004018080602001828103825260218152602001806118986021913960400191505060405180910390fd5b9392505050565b60006113d783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061179c565b60006113d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115fc565b6001600160a01b0383166114a75760405162461bcd60e51b815260040180806020018281038252602581526020018061192a6025913960400191505060405180910390fd5b6001600160a01b0382166114ec5760405162461bcd60e51b81526004018080602001828103825260238152602001806118076023913960400191505060405180910390fd5b6000811161152b5760405162461bcd60e51b81526004018080602001828103825260298152602001806119016029913960400191505060405180910390fd5b611536838383611801565b61157381604051806060016040528060268152602001611872602691396001600160a01b03861660009081526020819052604090205491906115fc565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115a29082611693565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561168b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611650578181015183820152602001611638565b50505050905090810190601f16801561167d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156113d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6009546001600160a01b0383811691161480159061171957506008546001600160a01b03838116911614155b156117985760065460b40142118061173a57506802b5e3af16b18800008111155b61174357600080fd5b60065460b40142118061177357506001600160a01b0382166000908152600a6020526040902054603c4291909103115b61177c57600080fd5b6001600160a01b0382166000908152600a602052604090204290555b5050565b600081836117eb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611650578181015183820152602001611638565b5060008385816117f757fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e1fc2ecffdd838a50eb6e01d801d352e9d8e5714c958f8faab88cfa4185af4e264736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a457c2d711610097578063acb2ad6f11610071578063acb2ad6f146104da578063bf56b371146104e2578063dd62ed3e146104ea578063f2fde38b14610518576101a9565b8063a457c2d71461045c578063a9059cbb14610488578063ac4dcb76146104b4576101a9565b80638da5cb5b116100d35780638da5cb5b146104095780638f02bb5b1461041157806395d89b411461042e578063a22d483214610436576101a9565b806370a08231146103d3578063715018a6146103f95780638a8c523c14610401576101a9565b8063313ce567116101665780634690484011610140578063469048401461035b578063498ffb901461037f5780634ada218b146103a55780636ebcf607146103ad576101a9565b8063313ce5671461030957806339509351146103275780633eaaf86b14610353576101a9565b806306fdde03146101ae578063095ea7b31461022b57806318160ddd1461026b57806323b872dd1461028557806325cf1b74146102bb5780633098cdfc146102e3575b600080fd5b6101b661053e565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101f05781810151838201526020016101d8565b50505050905090810190601f16801561021d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102576004803603604081101561024157600080fd5b506001600160a01b0381351690602001356105d4565b604080519115158252519081900360200190f35b6102736105f2565b60408051918252519081900360200190f35b6102576004803603606081101561029b57600080fd5b506001600160a01b038135811691602081013590911690604001356105f8565b6102e1600480360360208110156102d157600080fd5b50356001600160a01b031661085d565b005b6102e1600480360360208110156102f957600080fd5b50356001600160a01b0316610912565b6103116109ca565b6040805160ff9092168252519081900360200190f35b6102576004803603604081101561033d57600080fd5b506001600160a01b0381351690602001356109d3565b610273610a21565b610363610a27565b604080516001600160a01b039092168252519081900360200190f35b6102576004803603602081101561039557600080fd5b50356001600160a01b0316610a36565b610257610a4b565b610273600480360360208110156103c357600080fd5b50356001600160a01b0316610a5b565b610273600480360360208110156103e957600080fd5b50356001600160a01b0316610a6d565b6102e1610a88565b6102e1610b35565b610363610bdf565b6102e16004803603602081101561042757600080fd5b5035610bf3565b6101b6610d0d565b6102e16004803603602081101561044c57600080fd5b50356001600160a01b0316610d6e565b6102576004803603604081101561047257600080fd5b506001600160a01b038135169060200135610e1f565b6102576004803603604081101561049e57600080fd5b506001600160a01b038135169060200135610e87565b6102e1600480360360208110156104ca57600080fd5b50356001600160a01b031661109d565b61027361114e565b610273611154565b6102736004803603604081101561050057600080fd5b506001600160a01b038135811691602001351661115a565b6102e16004803603602081101561052e57600080fd5b50356001600160a01b0316611185565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ca5780601f1061059f576101008083540402835291602001916105ca565b820191906000526020600020905b8154815290600101906020018083116105ad57829003601f168201915b5050505050905090565b60006105e86105e161128e565b8484611292565b5060015b92915050565b60025490565b6000610602610bdf565b6001600160a01b0316846001600160a01b03161415801561063c5750610626610bdf565b6001600160a01b0316836001600160a01b031614155b1561069857600554600160b01b900460ff16610698576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b600554600160a81b900460ff1680156106ca57506001600160a01b0383166000908152600b602052604090205460ff16155b156107d8576004610e106006544203816106e057fe5b04816106e857fe5b066106f85761025860075561077b565b6004610e1060065442038161070957fe5b048161071157fe5b06600114156107255761032060075561077b565b6004610e1060065442038161073657fe5b048161073e57fe5b0660021415610752576103e860075561077b565b6004610e1060065442038161076357fe5b048161076b57fe5b066003141561077b576104b06007555b600061079e6127106107988560075461137e90919063ffffffff16565b906113de565b905060006107ac8483611420565b90506107b9868683611462565b6008546107d19087906001600160a01b031684611462565b50506107e3565b6107e3848484611462565b610853846107ef61128e565b61084e856040518060600160405280602881526020016118b9602891396001600160a01b038a1660009081526001602052604081209061082d61128e565b6001600160a01b0316815260208101919091526040016000205491906115fc565b611292565b5060019392505050565b61086561128e565b60055461010090046001600160a01b039081169116146108ba576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19169055815192835290517f5f6f41849ec25c114eb487c7350582993fe237c055d4b85a0162562ebff90cfe9281900390910190a150565b61091a61128e565b60055461010090046001600160a01b0390811691161461096f576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166000818152600b6020908152604091829020805460ff19166001179055815192835290517fae0993f85474e26fe71b5d453f1067e41f5a659baa13972d2fe86f7232f8cd139281900390910190a150565b60055460ff1690565b60006105e86109e061128e565b8461084e85600160006109f161128e565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611693565b60025481565b6008546001600160a01b031681565b600b6020526000908152604090205460ff1681565b600554600160b01b900460ff1681565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b610a9061128e565b60055461010090046001600160a01b03908116911614610ae5576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b610b3d61128e565b60055461010090046001600160a01b03908116911614610b92576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6005805460ff60b01b1916600160b01b179055604080516001815290517fbeda7dca7bc1b3e80b871f4818129ec73b771581f803d553aeb3484098e5f65a9181900360200190a142600655565b60055461010090046001600160a01b031690565b610bfb61128e565b60055461010090046001600160a01b03908116911614610c50576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b610578811115610ca7576040805162461bcd60e51b815260206004820152601e60248201527f4665652063616e6e6f742062652067726561746572207468616e203134250000604482015290519081900360640190fd5b80610cbe576005805460ff60a81b19169055610cd2565b6005805460ff60a81b1916600160a81b1790555b60078190556040805182815290517f0496ed1e61eb69727f9659a8e859288db4758ffb1f744d1c1424634f90a257f49181900360200190a150565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156105ca5780601f1061059f576101008083540402835291602001916105ca565b610d7661128e565b60055461010090046001600160a01b03908116911614610dcb576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b600980546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f5d338516e06e286e70c606dc31a9818bc3ecf6eb9995eaa5c4c7cae87e86adda9181900360200190a150565b60006105e8610e2c61128e565b8461084e856040518060600160405280602581526020016119736025913960016000610e5661128e565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906115fc565b6000610e91610bdf565b6001600160a01b0316610ea261128e565b6001600160a01b031614158015610ed25750610ebc610bdf565b6001600160a01b0316836001600160a01b031614155b15610f3857600554600160b01b900460ff16610f2e576040805162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81a5cc81b9bdd08195b98589b195960521b604482015290519081900360640190fd5b610f3883836116ed565b600554600160a81b900460ff168015610f775750600b6000610f5861128e565b6001600160a01b0316815260208101919091526040016000205460ff16155b1561108b576004610e10600654420381610f8d57fe5b0481610f9557fe5b06610fa557610258600755611028565b6004610e10600654420381610fb657fe5b0481610fbe57fe5b0660011415610fd257610320600755611028565b6004610e10600654420381610fe357fe5b0481610feb57fe5b0660021415610fff576103e8600755611028565b6004610e1060065442038161101057fe5b048161101857fe5b0660031415611028576104b06007555b60006110456127106107988560075461137e90919063ffffffff16565b905060006110538483611420565b905061106761106061128e565b8683611462565b61108461107261128e565b6008546001600160a01b031684611462565b50506105e8565b6105e861109661128e565b8484611462565b6110a561128e565b60055461010090046001600160a01b039081169116146110fa576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b600880546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f59dfe0cb0c2ca886f38478780683af126e4c05ba43ee640cb971eb7c736a3b0a9181900360200190a150565b60075481565b60065481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61118d61128e565b60055461010090046001600160a01b039081169116146111e2576040805162461bcd60e51b815260206004820181905260248201526000805160206118e1833981519152604482015290519081900360640190fd5b6001600160a01b0381166112275760405162461bcd60e51b815260040180806020018281038252602681526020018061182a6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b0383166112d75760405162461bcd60e51b815260040180806020018281038252602481526020018061194f6024913960400191505060405180910390fd5b6001600160a01b03821661131c5760405162461bcd60e51b81526004018080602001828103825260228152602001806118506022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60008261138d575060006105ec565b8282028284828161139a57fe5b04146113d75760405162461bcd60e51b81526004018080602001828103825260218152602001806118986021913960400191505060405180910390fd5b9392505050565b60006113d783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061179c565b60006113d783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506115fc565b6001600160a01b0383166114a75760405162461bcd60e51b815260040180806020018281038252602581526020018061192a6025913960400191505060405180910390fd5b6001600160a01b0382166114ec5760405162461bcd60e51b81526004018080602001828103825260238152602001806118076023913960400191505060405180910390fd5b6000811161152b5760405162461bcd60e51b81526004018080602001828103825260298152602001806119016029913960400191505060405180910390fd5b611536838383611801565b61157381604051806060016040528060268152602001611872602691396001600160a01b03861660009081526020819052604090205491906115fc565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546115a29082611693565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561168b5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611650578181015183820152602001611638565b50505050905090810190601f16801561167d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156113d7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6009546001600160a01b0383811691161480159061171957506008546001600160a01b03838116911614155b156117985760065460b40142118061173a57506802b5e3af16b18800008111155b61174357600080fd5b60065460b40142118061177357506001600160a01b0382166000908152600a6020526040902054603c4291909103115b61177c57600080fd5b6001600160a01b0382166000908152600a602052604090204290555b5050565b600081836117eb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611650578181015183820152602001611638565b5060008385816117f757fe5b0495945050505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e1fc2ecffdd838a50eb6e01d801d352e9d8e5714c958f8faab88cfa4185af4e264736f6c634300060c0033
Deployed Bytecode Sourcemap
27059:4405:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19661:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21768:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21768:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;20736:100;;;:::i;:::-;;;;;;;;;;;;;;;;30403:1056;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;30403:1056:0;;;;;;;;;;;;;;;;;:::i;28205:143::-;;;;;;;;;;;;;;;;-1:-1:-1;28205:143:0;-1:-1:-1;;;;;28205:143:0;;:::i;:::-;;28063:136;;;;;;;;;;;;;;;;-1:-1:-1;28063:136:0;-1:-1:-1;;;;;28063:136:0;;:::i;20588:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23141:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23141:218:0;;;;;;;;:::i;18971:53::-;;;:::i;27691:27::-;;;:::i;:::-;;;;-1:-1:-1;;;;;27691:27:0;;;;;;;;;;;;;;27875:45;;;;;;;;;;;;;;;;-1:-1:-1;27875:45:0;-1:-1:-1;;;;;27875:45:0;;:::i;27591:34::-;;;:::i;18838:45::-;;;;;;;;;;;;;;;;-1:-1:-1;18838:45:0;-1:-1:-1;;;;;18838:45:0;;:::i;20899:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20899:119:0;-1:-1:-1;;;;;20899:119:0;;:::i;2691:148::-;;;:::i;27927:130::-;;;:::i;2049:79::-;;;:::i;28354:273::-;;;;;;;;;;;;;;;;-1:-1:-1;28354:273:0;;:::i;19863:87::-;;;:::i;28782:127::-;;;;;;;;;;;;;;;;-1:-1:-1;28782:127:0;-1:-1:-1;;;;;28782:127:0;;:::i;23862:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23862:269:0;;;;;;;;:::i;29328:983::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29328:983:0;;;;;;;;:::i;28633:141::-;;;;;;;;;;;;;;;;-1:-1:-1;28633:141:0;-1:-1:-1;;;;;28633:141:0;;:::i;27660:26::-;;;:::i;27630:25::-;;;:::i;21470:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21470:151:0;;;;;;;;;;:::i;2994:244::-;;;;;;;;;;;;;;;;-1:-1:-1;2994:244:0;-1:-1:-1;;;;;2994:244:0;;:::i;19661:83::-;19731:5;19724:12;;;;;;;;-1:-1:-1;;19724:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19698:13;;19724:12;;19731:5;;19724:12;;19731:5;19724:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19661:83;:::o;21768:169::-;21851:4;21868:39;21877:12;:10;:12::i;:::-;21891:7;21900:6;21868:8;:39::i;:::-;-1:-1:-1;21925:4:0;21768:169;;;;;:::o;20736:100::-;20816:12;;20736:100;:::o;30403:1056::-;30501:4;30527:7;:5;:7::i;:::-;-1:-1:-1;;;;;30517:17:0;:6;-1:-1:-1;;;;;30517:17:0;;;:41;;;;;30551:7;:5;:7::i;:::-;-1:-1:-1;;;;;30538:20:0;:9;-1:-1:-1;;;;;30538:20:0;;;30517:41;30514:112;;;30577:14;;-1:-1:-1;;;30577:14:0;;;;30569:49;;;;;-1:-1:-1;;;30569:49:0;;;;;;;;;;;;-1:-1:-1;;;30569:49:0;;;;;;;;;;;;;;;30636:9;;-1:-1:-1;;;30636:9:0;;;;:45;;;;-1:-1:-1;;;;;;30649:23:0;;;;;;:12;:23;;;;;;;;:32;30636:45;30632:676;;;30723:1;30716:4;30704:10;;30698:3;:16;30697:23;;;;;;:27;;;;;;30692:353;;30757:3;30743:11;:17;30692:353;;;30814:1;30807:4;30795:10;;30789:3;:16;30788:23;;;;;;:27;;;;;;30820:1;30787:34;30783:262;;;30848:3;30834:11;:17;30783:262;;;30905:1;30898:4;30886:10;;30880:3;:16;30879:23;;;;;;:27;;;;;;30911:1;30878:34;30874:171;;;30939:4;30925:11;:18;30874:171;;;30997:1;30990:4;30978:10;;30972:3;:16;30971:23;;;;;;:27;;;;;;31003:1;30970:34;30966:79;;;31031:4;31017:11;:18;30966:79;31053:11;31067:34;31095:5;31067:23;31083:6;31067:11;;:15;;:23;;;;:::i;:::-;:27;;:34::i;:::-;31053:48;-1:-1:-1;31110:18:0;31131:15;:6;31053:48;31131:10;:15::i;:::-;31110:36;;31155:43;31165:6;31173:9;31184:13;31155:9;:43::i;:::-;31225:12;;31207:36;;31217:6;;-1:-1:-1;;;;;31225:12:0;31239:3;31207:9;:36::i;:::-;30632:676;;;;;31264:36;31274:6;31282:9;31293:6;31264:9;:36::i;:::-;31314:121;31323:6;31331:12;:10;:12::i;:::-;31345:89;31383:6;31345:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31345:19:0;;;;;;:11;:19;;;;;;31365:12;:10;:12::i;:::-;-1:-1:-1;;;;;31345:33:0;;;;;;;;;;;;-1:-1:-1;31345:33:0;;;:89;:37;:89::i;:::-;31314:8;:121::i;:::-;-1:-1:-1;31449:4:0;30403:1056;;;;;:::o;28205:143::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28274:21:0;::::1;28298:5;28274:21:::0;;;:12:::1;:21;::::0;;;;;;;;:29;;-1:-1:-1;;28274:29:0::1;::::0;;28315:27;;;;;;;::::1;::::0;;;;;;;;::::1;28205:143:::0;:::o;28063:136::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;28129:21:0;::::1;;::::0;;;:12:::1;:21;::::0;;;;;;;;:28;;-1:-1:-1;;28129:28:0::1;28153:4;28129:28;::::0;;28169:24;;;;;;;::::1;::::0;;;;;;;;::::1;28063:136:::0;:::o;20588:83::-;20654:9;;;;20588:83;:::o;23141:218::-;23229:4;23246:83;23255:12;:10;:12::i;:::-;23269:7;23278:50;23317:10;23278:11;:25;23290:12;:10;:12::i;:::-;-1:-1:-1;;;;;23278:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23278:25:0;;;:34;;;;;;;;;;;:38;:50::i;18971:53::-;;;;:::o;27691:27::-;;;-1:-1:-1;;;;;27691:27:0;;:::o;27875:45::-;;;;;;;;;;;;;;;:::o;27591:34::-;;;-1:-1:-1;;;27591:34:0;;;;;:::o;18838:45::-;;;;;;;;;;;;;;:::o;20899:119::-;-1:-1:-1;;;;;20992:18:0;20965:7;20992:18;;;;;;;;;;;;20899:119::o;2691:148::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;2782:6:::1;::::0;2761:40:::1;::::0;2798:1:::1;::::0;2782:6:::1;::::0;::::1;-1:-1:-1::0;;;;;2782:6:0::1;::::0;2761:40:::1;::::0;2798:1;;2761:40:::1;2812:6;:19:::0;;-1:-1:-1;;;;;;2812:19:0::1;::::0;;2691:148::o;27927:130::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;27980:14:::1;:21:::0;;-1:-1:-1;;;;27980:21:0::1;-1:-1:-1::0;;;27980:21:0::1;::::0;;28008:20:::1;::::0;;27997:4:::1;28008:20:::0;;;;::::1;::::0;;;;::::1;::::0;;::::1;28048:3;28035:10;:16:::0;27927:130::o;2049:79::-;2114:6;;;;;-1:-1:-1;;;;;2114:6:0;;2049:79::o;28354:273::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;28430:4:::1;28423:3;:11;;28415:54;;;::::0;;-1:-1:-1;;;28415:54:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;28480:8:::0;28476:87:::1;;28499:9;:17:::0;;-1:-1:-1;;;;28499:17:0::1;::::0;;28476:87:::1;;;28539:9;:16:::0;;-1:-1:-1;;;;28539:16:0::1;-1:-1:-1::0;;;28539:16:0::1;::::0;;28476:87:::1;28569:11;:17:::0;;;28598:23:::1;::::0;;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;28354:273:::0;:::o;19863:87::-;19935:7;19928:14;;;;;;;;-1:-1:-1;;19928:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19902:13;;19928:14;;19935:7;;19928:14;;19935:7;19928:14;;;;;;;;;;;;;;;;;;;;;;;;28782:127;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;28847:11:::1;:21:::0;;-1:-1:-1;;;;;28847:21:0;::::1;-1:-1:-1::0;;;;;;28847:21:0;;::::1;::::0;::::1;::::0;;;28880:23:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;28782:127:::0;:::o;23862:269::-;23955:4;23972:129;23981:12;:10;:12::i;:::-;23995:7;24004:96;24043:15;24004:96;;;;;;;;;;;;;;;;;:11;:25;24016:12;:10;:12::i;:::-;-1:-1:-1;;;;;24004:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24004:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;29328:983::-;29406:4;29438:7;:5;:7::i;:::-;-1:-1:-1;;;;;29422:23:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;29422:23:0;;;:47;;;;;29462:7;:5;:7::i;:::-;-1:-1:-1;;;;;29449:20:0;:9;-1:-1:-1;;;;;29449:20:0;;;29422:47;29419:164;;;29490:14;;-1:-1:-1;;;29490:14:0;;;;29482:49;;;;;-1:-1:-1;;;29482:49:0;;;;;;;;;;;;-1:-1:-1;;;29482:49:0;;;;;;;;;;;;;;;29542:33;29557:9;29568:6;29542:14;:33::i;:::-;29593:9;;-1:-1:-1;;;29593:9:0;;;;:48;;;;;29606:12;:26;29619:12;:10;:12::i;:::-;-1:-1:-1;;;;;29606:26:0;;;;;;;;;;;;-1:-1:-1;29606:26:0;;;;:35;29593:48;29589:699;;;29683:1;29676:4;29664:10;;29658:3;:16;29657:23;;;;;;:27;;;;;;29652:353;;29717:3;29703:11;:17;29652:353;;;29774:1;29767:4;29755:10;;29749:3;:16;29748:23;;;;;;:27;;;;;;29780:1;29747:34;29743:262;;;29808:3;29794:11;:17;29743:262;;;29865:1;29858:4;29846:10;;29840:3;:16;29839:23;;;;;;:27;;;;;;29871:1;29838:34;29834:171;;;29899:4;29885:11;:18;29834:171;;;29957:1;29950:4;29938:10;;29932:3;:16;29931:23;;;;;;:27;;;;;;29963:1;29930:34;29926:79;;;29991:4;29977:11;:18;29926:79;30013:11;30027:34;30055:5;30027:23;30043:6;30027:11;;:15;;:23;;;;:::i;:34::-;30013:48;-1:-1:-1;30070:18:0;30091:15;:6;30013:48;30091:10;:15::i;:::-;30070:36;;30115:49;30125:12;:10;:12::i;:::-;30139:9;30150:13;30115:9;:49::i;:::-;30173:42;30183:12;:10;:12::i;:::-;30197;;-1:-1:-1;;;;;30197:12:0;30211:3;30173:9;:42::i;:::-;29589:699;;;;;30238:42;30248:12;:10;:12::i;:::-;30262:9;30273:6;30238:9;:42::i;28633:141::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;28707:12:::1;:22:::0;;-1:-1:-1;;;;;28707:22:0;::::1;-1:-1:-1::0;;;;;;28707:22:0;;::::1;::::0;::::1;::::0;;;28741:27:::1;::::0;;;;;;::::1;::::0;;;;::::1;::::0;;::::1;28633:141:::0;:::o;27660:26::-;;;;:::o;27630:25::-;;;;:::o;21470:151::-;-1:-1:-1;;;;;21586:18:0;;;21559:7;21586:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21470:151::o;2994:244::-;2271:12;:10;:12::i;:::-;2261:6;;;;;-1:-1:-1;;;;;2261:6:0;;;:22;;;2253:67;;;;;-1:-1:-1;;;2253:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2253:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3083:22:0;::::1;3075:73;;;;-1:-1:-1::0;;;3075:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3185:6;::::0;3164:38:::1;::::0;-1:-1:-1;;;;;3164:38:0;;::::1;::::0;3185:6:::1;::::0;::::1;;::::0;3164:38:::1;::::0;;;::::1;3213:6;:17:::0;;-1:-1:-1;;;;;3213:17:0;;::::1;;;-1:-1:-1::0;;;;;;3213:17:0;;::::1;::::0;;;::::1;::::0;;2994:244::o;570:106::-;658:10;570:106;:::o;25629:346::-;-1:-1:-1;;;;;25731:19:0;;25723:68;;;;-1:-1:-1;;;25723:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25810:21:0;;25802:68;;;;-1:-1:-1;;;25802:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25883:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25935:32;;;;;;;;;;;;;;;;;25629:346;;;:::o;8323:471::-;8381:7;8626:6;8622:47;;-1:-1:-1;8656:1:0;8649:8;;8622:47;8693:5;;;8697:1;8693;:5;:1;8717:5;;;;;:10;8709:56;;;;-1:-1:-1;;;8709:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8785:1;8323:471;-1:-1:-1;;;8323:471:0:o;9270:132::-;9328:7;9355:39;9359:1;9362;9355:39;;;;;;;;;;;;;;;;;:3;:39::i;7433:136::-;7491:7;7518:43;7522:1;7525;7518:43;;;;;;;;;;;;;;;;;:3;:43::i;24141:624::-;-1:-1:-1;;;;;24247:20:0;;24239:70;;;;-1:-1:-1;;;24239:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24328:23:0;;24320:71;;;;-1:-1:-1;;;24320:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24419:1;24410:6;:10;24402:64;;;;-1:-1:-1;;;24402:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24489:47;24510:6;24518:9;24529:6;24489:20;:47::i;:::-;24569:71;24591:6;24569:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24569:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24549:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24674:20;;;;;;;:32;;24699:6;24674:24;:32::i;:::-;-1:-1:-1;;;;;24651:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24722:35;;;;;;;24651:20;;24722:35;;;;;;;;;;;;;24141:624;;;:::o;7872:192::-;7958:7;7994:12;7986:6;;;;7978:29;;;;-1:-1:-1;;;7978:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8030:5:0;;;7872:192::o;6969:181::-;7027:7;7059:5;;;7083:6;;;;7075:46;;;;;-1:-1:-1;;;7075:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28917:361;29013:11;;-1:-1:-1;;;;;29000:24:0;;;29013:11;;29000:24;;;;:53;;-1:-1:-1;29041:12:0;;-1:-1:-1;;;;;29028:25:0;;;29041:12;;29028:25;;29000:53;28996:269;;;29078:10;;29091:9;29078:22;29072:3;:28;:47;;;;29115:4;29105:6;:14;;29072:47;29064:56;;;;;;29143:10;;29156:9;29143:22;29137:3;:28;:74;;;-1:-1:-1;;;;;;29188:18:0;;;;;;:7;:18;;;;;;29209:2;29170:15;:36;;;;:41;29137:74;29129:83;;;;;;-1:-1:-1;;;;;29221:18:0;;;;;;:7;:18;;;;;29242:15;29221:36;;28996:269;28917:361;;:::o;9898:278::-;9984:7;10019:12;10012:5;10004:28;;;;-1:-1:-1;;;10004:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10043:9;10059:1;10055;:5;;;;;;;9898:278;-1:-1:-1;;;;;9898:278:0:o;26893:92::-;;;;:::o
Swarm Source
ipfs://e1fc2ecffdd838a50eb6e01d801d352e9d8e5714c958f8faab88cfa4185af4e2
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.