ETH Price: $3,111.73 (-2.24%)

Token

SemenRetentionToken (SRT)
 

Overview

Max Total Supply

18,250,343.730373820176502238 SRT

Holders

25

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,157.240305842942417216 SRT

Value
$0.00
0xf8767172d61e4f822fe38e3c5dbfba6db761f386
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SemenRetentionToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-08-28
*/

// File: browser/CoomCoin.sol

/**
 *Submitted for verification at Etherscan.io on 2020-08-17
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/GSN/Context.sol

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/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) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @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: @openzeppelin/contracts/token/ERC20/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) 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) 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 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 is 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_;
    }

    /**
     * @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 { }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol

pragma solidity ^0.6.0;


/**
 * @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 {
    /**
     * @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);
    }
}

// File: contracts/CoomCoin.sol

// contracts/CoomCoin.sol

pragma solidity ^0.6.0;


// _________                           _________          .__         
// \_   ___ \   ____    ____    _____  \_   ___ \   ____  |__|  ____  
// /    \  \/  /  _ \  /  _ \  /     \ /    \  \/  /  _ \ |  | /    \ 
// \     \____(  <_> )(  <_> )|  Y Y  \\     \____(  <_> )|  ||   |  \
//  \______  / \____/  \____/ |__|_|  / \______  / \____/ |__||___|  /
//         \/                       \/         \/                  \/ 
//            Experience DeFi Regret. Cummies, Tokenized.

contract CoomCoin is ERC20Burnable {
    constructor(uint256 initialSupply) public ERC20("CoomCoin", "COOM") {
        _mint(msg.sender, initialSupply * 10**18);
    }
}
// File: browser/SemenRetentionToken.sol



pragma solidity ^0.6.0;

contract SemenRetentionToken is ERC20, ERC20Burnable{
    CoomCoin coomCoin;
    
    mapping(address => uint256) lastEdgeTime;
    uint256 semenRetainedTotal;
    
    address topHolder;

    event DepositedCoom(address from);
    event WithdrewCoom(address from);
    event Approved(uint256 amount);
    event SemenRetained(uint256 amount);

    receive() external payable {
    }
    
    function RetainSemen(uint256 amount) external {
        address from = msg.sender;
        
        require(amount <= coomCoin.balanceOf(from));
        require(coomCoin.transferFrom(from, address(this), amount));  
        
        _mint(from, amount);
        
        emit DepositedCoom(from);
    }

    function Splooge(uint256 amount) external {                                                                     
        address from = msg.sender;
        require(amount <= balanceOf(from));
        uint256 oldTotalSupply = totalSupply();
        
        uint256 coomShot = coomCoin.balanceOf(address(this))
            .mul(amount) 
            .div(oldTotalSupply);
        
        // 6.9% of your SemenRetentionTokens retained in the coom pool
        uint256 semenRetained = coomShot.mul(69).div(1000);
        uint256 userReward = coomShot.sub(semenRetained);
  
        // once you redeem your tokens they get burned, except for the ones that 
        // go to the coom pool
        burn(userReward);
        _retainSemen(semenRetained);
        
        coomCoin.transferFrom(address(this), from, userReward);

        WithdrewCoom(from);
    }

    function Edge() external {
        // mapping default value is 0 so initial edge will be fine
        require(CanEdge(), "Must wait 6.9 hours between edging");
        require(totalSupply() > 0); // Avoid divide by 0
        lastEdgeTime[msg.sender] = now;
        uint256 srt = balanceOf(msg.sender);
        // once a day you can edge, allowing you to retain more semen proportional 
        // to the amount of semen SemenRetentionTokens that you possess
        uint256 edgeReward = semenRetainedTotal.mul(srt).div(totalSupply()).div(10);
        semenRetainedTotal = semenRetainedTotal.sub(edgeReward);
        //deposited[msg.sender] = deposited[msg.sender] + edgeReward;
        _transfer(address(this), msg.sender, edgeReward);
    }
    
    // This deposits COOM into coompool as non reversible action
    function DonateCoom(uint256 amount) external {
        _mint(address(this), amount);
        semenRetainedTotal = semenRetainedTotal.add(amount);
        coomCoin.transferFrom(msg.sender, address(this), amount);
    }

    function approve(address target, uint256 amount) public override returns(bool)
    {
        _approve(target, msg.sender, amount);
        coomCoin.approve(address(this), amount);
        emit Approved(amount);

        return true;
    }
    
    function transfer(address to, uint256 amount) public override returns (bool) {
        uint256 semenRetained = amount.div(100);
        _retainSemen(semenRetained);
        _transfer(msg.sender, to, amount.sub(semenRetained));
    }

    function transferFrom(address from, address to, uint256 amount) public override returns (bool) {
        uint256 semenRetained = amount.div(100);
        _retainSemen(semenRetained);
        _transfer(from, to, amount.sub(semenRetained));
    }
    
    function _retainSemen(uint256 amount) internal {
        require(balanceOf(msg.sender) >= amount);
        semenRetainedTotal = semenRetainedTotal.add(amount);
        _transfer(msg.sender, address(this), amount);
        emit SemenRetained(amount);
    }
    
    function LastEdgeTime() public view returns(uint256){
        return lastEdgeTime[msg.sender];
    }
    
    function CanEdge() public view returns(bool){
        return (now > LastEdgeTime() + 6.9 hours);
    }
    
    function GetData(address addr) public view returns (uint256, uint256, bool, uint256, uint256) {
        return (
            balanceOf(addr),
            LastEdgeTime(),
            CanEdge(),
            semenRetainedTotal,
            totalSupply()
        );
    }

    constructor() public ERC20("SemenRetentionToken", "SRT") {
        coomCoin = CoomCoin(0x2f3e054D233c93C59140c0905227c7C607c70cbb);
        semenRetainedTotal = 0;
    }
}

Contract Security Audit

Contract ABI

[{"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":"amount","type":"uint256"}],"name":"Approved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"}],"name":"DepositedCoom","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SemenRetained","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":"address","name":"from","type":"address"}],"name":"WithdrewCoom","type":"event"},{"inputs":[],"name":"CanEdge","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"DonateCoom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"Edge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"GetData","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LastEdgeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"RetainSemen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Splooge","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":"target","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f53656d656e526574656e74696f6e546f6b656e000000000000000000000000008152506040518060400160405280600381526020017f535254000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000131565b508060049080519060200190620000af92919062000131565b506012600560006101000a81548160ff021916908360ff1602179055505050732f3e054d233c93c59140c0905227c7c607c70cbb600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600781905550620001d7565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200017457805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a457825182559160200191906001019062000187565b5b509050620001b49190620001b8565b5090565b5b80821115620001d3576000816000905550600101620001b9565b5090565b61234980620001e76000396000f3fe6080604052600436106101235760003560e01c806370a08231116100a057806395d89b411161006457806395d89b41146105fe5780639754f1091461068e578063a457c2d7146106b9578063a9059cbb1461072a578063dd62ed3e1461079b5761012a565b806370a0823114610445578063722654d9146104aa57806379cc6790146104e55780638b660cdc1461054057806391daf9131461057b5761012a565b8063207d46a1116100e7578063207d46a11461029f57806323b872dd146102da578063313ce5671461036b578063395093511461039957806342966c681461040a5761012a565b806306fdde031461012f578063095ea7b3146101bf578063105d8ccf14610230578063113e591a1461024757806318160ddd146102745761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610820565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cb57600080fd5b50610218600480360360408110156101e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108c2565b60405180821515815260200191505060405180910390f35b34801561023c57600080fd5b506102456109df565b005b34801561025357600080fd5b5061025c610b10565b60405180821515815260200191505060405180910390f35b34801561028057600080fd5b50610289610b25565b6040518082815260200191505060405180910390f35b3480156102ab57600080fd5b506102d8600480360360208110156102c257600080fd5b8101908080359060200190929190505050610b2f565b005b3480156102e657600080fd5b50610353600480360360608110156102fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d54565b60405180821515815260200191505060405180910390f35b34801561037757600080fd5b50610380610d9b565b604051808260ff16815260200191505060405180910390f35b3480156103a557600080fd5b506103f2600480360360408110156103bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db2565b60405180821515815260200191505060405180910390f35b34801561041657600080fd5b506104436004803603602081101561042d57600080fd5b8101908080359060200190929190505050610e65565b005b34801561045157600080fd5b506104946004803603602081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e79565b6040518082815260200191505060405180910390f35b3480156104b657600080fd5b506104e3600480360360208110156104cd57600080fd5b8101908080359060200190929190505050610ec1565b005b3480156104f157600080fd5b5061053e6004803603604081101561050857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fd6565b005b34801561054c57600080fd5b506105796004803603602081101561056357600080fd5b8101908080359060200190929190505050611038565b005b34801561058757600080fd5b506105ca6004803603602081101561059e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b6040518086815260200185815260200184151581526020018381526020018281526020019550505050505060405180910390f35b34801561060a57600080fd5b50610613611320565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610653578082015181840152602081019050610638565b50505050905090810190601f1680156106805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561069a57600080fd5b506106a36113c2565b6040518082815260200191505060405180910390f35b3480156106c557600080fd5b50610712600480360360408110156106dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611409565b60405180821515815260200191505060405180910390f35b34801561073657600080fd5b506107836004803603604081101561074d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d6565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b5061080a600480360360408110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151c565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cf8333846115a3565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b330846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561096257600080fd5b505af1158015610976573d6000803e3d6000fd5b505050506040513d602081101561098c57600080fd5b8101908080519060200190929190505050507f3ad93af63cb7967b23e4fb500b7d7d28b07516325dcf341f88bebf959d82c1cb826040518082815260200191505060405180910390a16001905092915050565b6109e7610b10565b610a3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061223f6022913960400191505060405180910390fd5b6000610a46610b25565b11610a5057600080fd5b42600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610a9f33610e79565b90506000610ae4600a610ad6610ab3610b25565b610ac88660075461179a90919063ffffffff16565b61182090919063ffffffff16565b61182090919063ffffffff16565b9050610afb8160075461186a90919063ffffffff16565b600781905550610b0c3033836118b4565b5050565b6000616108610b1d6113c2565b014211905090565b6000600254905090565b6000339050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610bbd57600080fd5b505afa158015610bd1573d6000803e3d6000fd5b505050506040513d6020811015610be757600080fd5b8101908080519060200190929190505050821115610c0457600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8230856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505050506040513d6020811015610cdf57600080fd5b8101908080519060200190929190505050610cf957600080fd5b610d038183611b75565b7f51be88a780598ddc38fcb9c9835b0b56e32dcb51f9d7db6ae8adae55d68f74f181604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600080610d6b60648461182090919063ffffffff16565b9050610d7681611d3c565b610d938585610d8e848761186a90919063ffffffff16565b6118b4565b509392505050565b6000600560009054906101000a900460ff16905090565b6000610e5b610dbf611db1565b84610e568560016000610dd0611db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6115a3565b6001905092915050565b610e76610e70611db1565b82611e41565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ecb3082611b75565b610ee081600754611db990919063ffffffff16565b600781905550600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610f9757600080fd5b505af1158015610fab573d6000803e3d6000fd5b505050506040513d6020811015610fc157600080fd5b81019080805190602001909291905050505050565b6000611015826040518060600160405280602481526020016122616024913961100686611001611db1565b61151c565b6120059092919063ffffffff16565b905061102983611023611db1565b836115a3565b6110338383611e41565b505050565b600033905061104681610e79565b82111561105257600080fd5b600061105c610b25565b905060006111488261113a86600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110f157600080fd5b505afa158015611105573d6000803e3d6000fd5b505050506040513d602081101561111b57600080fd5b810190808051906020019092919050505061179a90919063ffffffff16565b61182090919063ffffffff16565b905060006111746103e861116660458561179a90919063ffffffff16565b61182090919063ffffffff16565b9050600061118b828461186a90919063ffffffff16565b905061119681610e65565b61119f82611d3c565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3087846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561125057600080fd5b505af1158015611264573d6000803e3d6000fd5b505050506040513d602081101561127a57600080fd5b8101908080519060200190929190505050507f6dc467621d2b34b90299e700b0cc4a2802e509fd3edd8e9b222d8cf84e67408585604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1505050505050565b60008060008060006112f286610e79565b6112fa6113c2565b611302610b10565b60075461130d610b25565b9450945094509450945091939590929450565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60006114cc611416611db1565b846114c7856040518060600160405280602581526020016122ef6025913960016000611440611db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6115a3565b6001905092915050565b6000806114ed60648461182090919063ffffffff16565b90506114f881611d3c565b6115153385611510848761186a90919063ffffffff16565b6118b4565b5092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122cb6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121d66022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156117ad576000905061181a565b60008284029050828482816117be57fe5b0414611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061221e6021913960400191505060405180910390fd5b809150505b92915050565b600061186283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120c5565b905092915050565b60006118ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612005565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561193a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122a66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121916023913960400191505060405180910390fd5b6119cb83838361218b565b611a36816040518060600160405280602681526020016121f8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c246000838361218b565b611c3981600254611db990919063ffffffff16565b600281905550611c90816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80611d4633610e79565b1015611d5157600080fd5b611d6681600754611db990919063ffffffff16565b600781905550611d773330836118b4565b7f2570cef5938feb3506c0f417bdfe060ef68eff7e81cce53b1076c25805fac363816040518082815260200191505060405180910390a150565b600033905090565b600080828401905083811015611e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122856021913960400191505060405180910390fd5b611ed38260008361218b565b611f3e816040518060600160405280602281526020016121b4602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f958160025461186a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008383111582906120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561207757808201518184015260208101905061205c565b50505050905090810190601f1680156120a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213657808201518184015260208101905061211b565b50505050905090810190601f1680156121635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161217d57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d757374207761697420362e3920686f757273206265747765656e20656467696e6745524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204d3f7b75cd4ac9769270e0c0fc8f05684583b431136c63cee5223dc1405decfd64736f6c634300060c0033

Deployed Bytecode

0x6080604052600436106101235760003560e01c806370a08231116100a057806395d89b411161006457806395d89b41146105fe5780639754f1091461068e578063a457c2d7146106b9578063a9059cbb1461072a578063dd62ed3e1461079b5761012a565b806370a0823114610445578063722654d9146104aa57806379cc6790146104e55780638b660cdc1461054057806391daf9131461057b5761012a565b8063207d46a1116100e7578063207d46a11461029f57806323b872dd146102da578063313ce5671461036b578063395093511461039957806342966c681461040a5761012a565b806306fdde031461012f578063095ea7b3146101bf578063105d8ccf14610230578063113e591a1461024757806318160ddd146102745761012a565b3661012a57005b600080fd5b34801561013b57600080fd5b50610144610820565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101cb57600080fd5b50610218600480360360408110156101e257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506108c2565b60405180821515815260200191505060405180910390f35b34801561023c57600080fd5b506102456109df565b005b34801561025357600080fd5b5061025c610b10565b60405180821515815260200191505060405180910390f35b34801561028057600080fd5b50610289610b25565b6040518082815260200191505060405180910390f35b3480156102ab57600080fd5b506102d8600480360360208110156102c257600080fd5b8101908080359060200190929190505050610b2f565b005b3480156102e657600080fd5b50610353600480360360608110156102fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d54565b60405180821515815260200191505060405180910390f35b34801561037757600080fd5b50610380610d9b565b604051808260ff16815260200191505060405180910390f35b3480156103a557600080fd5b506103f2600480360360408110156103bc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610db2565b60405180821515815260200191505060405180910390f35b34801561041657600080fd5b506104436004803603602081101561042d57600080fd5b8101908080359060200190929190505050610e65565b005b34801561045157600080fd5b506104946004803603602081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e79565b6040518082815260200191505060405180910390f35b3480156104b657600080fd5b506104e3600480360360208110156104cd57600080fd5b8101908080359060200190929190505050610ec1565b005b3480156104f157600080fd5b5061053e6004803603604081101561050857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fd6565b005b34801561054c57600080fd5b506105796004803603602081101561056357600080fd5b8101908080359060200190929190505050611038565b005b34801561058757600080fd5b506105ca6004803603602081101561059e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112e1565b6040518086815260200185815260200184151581526020018381526020018281526020019550505050505060405180910390f35b34801561060a57600080fd5b50610613611320565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610653578082015181840152602081019050610638565b50505050905090810190601f1680156106805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561069a57600080fd5b506106a36113c2565b6040518082815260200191505060405180910390f35b3480156106c557600080fd5b50610712600480360360408110156106dc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611409565b60405180821515815260200191505060405180910390f35b34801561073657600080fd5b506107836004803603604081101561074d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506114d6565b60405180821515815260200191505060405180910390f35b3480156107a757600080fd5b5061080a600480360360408110156107be57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061151c565b6040518082815260200191505060405180910390f35b606060038054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156108b85780601f1061088d576101008083540402835291602001916108b8565b820191906000526020600020905b81548152906001019060200180831161089b57829003601f168201915b5050505050905090565b60006108cf8333846115a3565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b330846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561096257600080fd5b505af1158015610976573d6000803e3d6000fd5b505050506040513d602081101561098c57600080fd5b8101908080519060200190929190505050507f3ad93af63cb7967b23e4fb500b7d7d28b07516325dcf341f88bebf959d82c1cb826040518082815260200191505060405180910390a16001905092915050565b6109e7610b10565b610a3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061223f6022913960400191505060405180910390fd5b6000610a46610b25565b11610a5057600080fd5b42600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610a9f33610e79565b90506000610ae4600a610ad6610ab3610b25565b610ac88660075461179a90919063ffffffff16565b61182090919063ffffffff16565b61182090919063ffffffff16565b9050610afb8160075461186a90919063ffffffff16565b600781905550610b0c3033836118b4565b5050565b6000616108610b1d6113c2565b014211905090565b6000600254905090565b6000339050600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231826040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015610bbd57600080fd5b505afa158015610bd1573d6000803e3d6000fd5b505050506040513d6020811015610be757600080fd5b8101908080519060200190929190505050821115610c0457600080fd5b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd8230856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610cb557600080fd5b505af1158015610cc9573d6000803e3d6000fd5b505050506040513d6020811015610cdf57600080fd5b8101908080519060200190929190505050610cf957600080fd5b610d038183611b75565b7f51be88a780598ddc38fcb9c9835b0b56e32dcb51f9d7db6ae8adae55d68f74f181604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b600080610d6b60648461182090919063ffffffff16565b9050610d7681611d3c565b610d938585610d8e848761186a90919063ffffffff16565b6118b4565b509392505050565b6000600560009054906101000a900460ff16905090565b6000610e5b610dbf611db1565b84610e568560016000610dd0611db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6115a3565b6001905092915050565b610e76610e70611db1565b82611e41565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ecb3082611b75565b610ee081600754611db990919063ffffffff16565b600781905550600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b158015610f9757600080fd5b505af1158015610fab573d6000803e3d6000fd5b505050506040513d6020811015610fc157600080fd5b81019080805190602001909291905050505050565b6000611015826040518060600160405280602481526020016122616024913961100686611001611db1565b61151c565b6120059092919063ffffffff16565b905061102983611023611db1565b836115a3565b6110338383611e41565b505050565b600033905061104681610e79565b82111561105257600080fd5b600061105c610b25565b905060006111488261113a86600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156110f157600080fd5b505afa158015611105573d6000803e3d6000fd5b505050506040513d602081101561111b57600080fd5b810190808051906020019092919050505061179a90919063ffffffff16565b61182090919063ffffffff16565b905060006111746103e861116660458561179a90919063ffffffff16565b61182090919063ffffffff16565b9050600061118b828461186a90919063ffffffff16565b905061119681610e65565b61119f82611d3c565b600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3087846040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050602060405180830381600087803b15801561125057600080fd5b505af1158015611264573d6000803e3d6000fd5b505050506040513d602081101561127a57600080fd5b8101908080519060200190929190505050507f6dc467621d2b34b90299e700b0cc4a2802e509fd3edd8e9b222d8cf84e67408585604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1505050505050565b60008060008060006112f286610e79565b6112fa6113c2565b611302610b10565b60075461130d610b25565b9450945094509450945091939590929450565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b5050505050905090565b6000600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60006114cc611416611db1565b846114c7856040518060600160405280602581526020016122ef6025913960016000611440611db1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6115a3565b6001905092915050565b6000806114ed60648461182090919063ffffffff16565b90506114f881611d3c565b6115153385611510848761186a90919063ffffffff16565b6118b4565b5092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611629576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806122cb6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806121d66022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000808314156117ad576000905061181a565b60008284029050828482816117be57fe5b0414611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061221e6021913960400191505060405180910390fd5b809150505b92915050565b600061186283836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506120c5565b905092915050565b60006118ac83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250612005565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561193a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806122a66025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806121916023913960400191505060405180910390fd5b6119cb83838361218b565b611a36816040518060600160405280602681526020016121f8602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611ac9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c18576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611c246000838361218b565b611c3981600254611db990919063ffffffff16565b600281905550611c90816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611db990919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b80611d4633610e79565b1015611d5157600080fd5b611d6681600754611db990919063ffffffff16565b600781905550611d773330836118b4565b7f2570cef5938feb3506c0f417bdfe060ef68eff7e81cce53b1076c25805fac363816040518082815260200191505060405180910390a150565b600033905090565b600080828401905083811015611e37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806122856021913960400191505060405180910390fd5b611ed38260008361218b565b611f3e816040518060600160405280602281526020016121b4602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120059092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611f958160025461186a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008383111582906120b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561207757808201518184015260208101905061205c565b50505050905090810190601f1680156120a45780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008083118290612171576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561213657808201518184015260208101905061211b565b50505050905090810190601f1680156121635780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161217d57fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774d757374207761697420362e3920686f757273206265747765656e20656467696e6745524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212204d3f7b75cd4ac9769270e0c0fc8f05684583b431136c63cee5223dc1405decfd64736f6c634300060c0033

Deployed Bytecode Sourcemap

28562:4391:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17723:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31232:245;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;30172:753;;;;;;;;;;;;;:::i;:::-;;32379:104;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18798:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28970:311;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31733:248;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;18650:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;21202:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27014:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;18961:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31003:221;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27424:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29289:875;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32495:275;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17925:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32265:102;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21923:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;31489:236;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;19531:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17723:83;17760:13;17793:5;17786:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17723:83;:::o;31232:245::-;31305:4;31327:36;31336:6;31344:10;31356:6;31327:8;:36::i;:::-;31374:8;;;;;;;;;;;:16;;;31399:4;31406:6;31374:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31429:16;31438:6;31429:16;;;;;;;;;;;;;;;;;;31465:4;31458:11;;31232:245;;;;:::o;30172:753::-;30284:9;:7;:9::i;:::-;30276:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30367:1;30351:13;:11;:13::i;:::-;:17;30343:26;;;;;;30428:3;30401:12;:24;30414:10;30401:24;;;;;;;;;;;;;;;:30;;;;30442:11;30456:21;30466:10;30456:9;:21::i;:::-;30442:35;;30646:18;30667:54;30718:2;30667:46;30699:13;:11;:13::i;:::-;30667:27;30690:3;30667:18;;:22;;:27;;;;:::i;:::-;:31;;:46;;;;:::i;:::-;:50;;:54;;;;:::i;:::-;30646:75;;30753:34;30776:10;30753:18;;:22;;:34;;;;:::i;:::-;30732:18;:55;;;;30869:48;30887:4;30894:10;30906;30869:9;:48::i;:::-;30172:753;;:::o;32379:104::-;32418:4;32465:9;32448:14;:12;:14::i;:::-;:26;32442:3;:32;32434:41;;32379:104;:::o;18798:100::-;18851:7;18878:12;;18871:19;;18798:100;:::o;28970:311::-;29027:12;29042:10;29027:25;;29091:8;;;;;;;;;;;:18;;;29110:4;29091:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29081:6;:34;;29073:43;;;;;;29135:8;;;;;;;;;;;:21;;;29157:4;29171;29178:6;29135:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29127:59;;;;;;29209:19;29215:4;29221:6;29209:5;:19::i;:::-;29254;29268:4;29254:19;;;;;;;;;;;;;;;;;;;;28970:311;;:::o;31733:248::-;31822:4;31839:21;31863:15;31874:3;31863:6;:10;;:15;;;;:::i;:::-;31839:39;;31889:27;31902:13;31889:12;:27::i;:::-;31927:46;31937:4;31943:2;31947:25;31958:13;31947:6;:10;;:25;;;;:::i;:::-;31927:9;:46::i;:::-;31733:248;;;;;;:::o;18650:83::-;18691:5;18716:9;;;;;;;;;;;18709:16;;18650:83;:::o;21202:218::-;21290:4;21307:83;21316:12;:10;:12::i;:::-;21330:7;21339:50;21378:10;21339:11;:25;21351:12;:10;:12::i;:::-;21339:25;;;;;;;;;;;;;;;:34;21365:7;21339:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21307:8;:83::i;:::-;21408:4;21401:11;;21202:218;;;;:::o;27014:91::-;27070:27;27076:12;:10;:12::i;:::-;27090:6;27070:5;:27::i;:::-;27014:91;:::o;18961:119::-;19027:7;19054:9;:18;19064:7;19054:18;;;;;;;;;;;;;;;;19047:25;;18961:119;;;:::o;31003:221::-;31059:28;31073:4;31080:6;31059:5;:28::i;:::-;31119:30;31142:6;31119:18;;:22;;:30;;;;:::i;:::-;31098:18;:51;;;;31160:8;;;;;;;;;;;:21;;;31182:10;31202:4;31209:6;31160:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31003:221;:::o;27424:295::-;27501:26;27530:84;27567:6;27530:84;;;;;;;;;;;;;;;;;:32;27540:7;27549:12;:10;:12::i;:::-;27530:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;27501:113;;27627:51;27636:7;27645:12;:10;:12::i;:::-;27659:18;27627:8;:51::i;:::-;27689:22;27695:7;27704:6;27689:5;:22::i;:::-;27424:295;;;:::o;29289:875::-;29411:12;29426:10;29411:25;;29465:15;29475:4;29465:9;:15::i;:::-;29455:6;:25;;29447:34;;;;;;29492:22;29517:13;:11;:13::i;:::-;29492:38;;29551:16;29570:94;29649:14;29570:59;29622:6;29570:8;;;;;;;;;;;:18;;;29597:4;29570:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:51;;:59;;;;:::i;:::-;:78;;:94;;;;:::i;:::-;29551:113;;29757:21;29781:26;29802:4;29781:16;29794:2;29781:8;:12;;:16;;;;:::i;:::-;:20;;:26;;;;:::i;:::-;29757:50;;29818:18;29839:27;29852:13;29839:8;:12;;:27;;;;:::i;:::-;29818:48;;29996:16;30001:10;29996:4;:16::i;:::-;30023:27;30036:13;30023:12;:27::i;:::-;30071:8;;;;;;;;;;;:21;;;30101:4;30108;30114:10;30071:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30138:18;30151:4;30138:18;;;;;;;;;;;;;;;;;;;;29289:875;;;;;;:::o;32495:275::-;32547:7;32556;32565:4;32571:7;32580;32622:15;32632:4;32622:9;:15::i;:::-;32652:14;:12;:14::i;:::-;32681:9;:7;:9::i;:::-;32705:18;;32738:13;:11;:13::i;:::-;32600:162;;;;;;;;;;32495:275;;;;;;;:::o;17925:87::-;17964:13;17997:7;17990:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17925:87;:::o;32265:102::-;32309:7;32335:12;:24;32348:10;32335:24;;;;;;;;;;;;;;;;32328:31;;32265:102;:::o;21923:269::-;22016:4;22033:129;22042:12;:10;:12::i;:::-;22056:7;22065:96;22104:15;22065:96;;;;;;;;;;;;;;;;;:11;:25;22077:12;:10;:12::i;:::-;22065:25;;;;;;;;;;;;;;;:34;22091:7;22065:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22033:8;:129::i;:::-;22180:4;22173:11;;21923:269;;;;:::o;31489:236::-;31560:4;31577:21;31601:15;31612:3;31601:6;:10;;:15;;;;:::i;:::-;31577:39;;31627:27;31640:13;31627:12;:27::i;:::-;31665:52;31675:10;31687:2;31691:25;31702:13;31691:6;:10;;:25;;;;:::i;:::-;31665:9;:52::i;:::-;31489:236;;;;;:::o;19531:151::-;19620:7;19647:11;:18;19659:5;19647:18;;;;;;;;;;;;;;;:27;19666:7;19647:27;;;;;;;;;;;;;;;;19640:34;;19531:151;;;;:::o;25070:346::-;25189:1;25172:19;;:5;:19;;;;25164:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25270:1;25251:21;;:7;:21;;;;25243:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25354:6;25324:11;:18;25336:5;25324:18;;;;;;;;;;;;;;;:27;25343:7;25324:27;;;;;;;;;;;;;;;:36;;;;25392:7;25376:32;;25385:5;25376:32;;;25401:6;25376:32;;;;;;;;;;;;;;;;;;25070:346;;;:::o;6191:471::-;6249:7;6499:1;6494;:6;6490:47;;;6524:1;6517:8;;;;6490:47;6549:9;6565:1;6561;:5;6549:17;;6594:1;6589;6585;:5;;;;;;:10;6577:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6653:1;6646:8;;;6191:471;;;;;:::o;7138:132::-;7196:7;7223:39;7227:1;7230;7223:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;7216:46;;7138:132;;;;:::o;5301:136::-;5359:7;5386:43;5390:1;5393;5386:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5379:50;;5301:136;;;;:::o;22682:539::-;22806:1;22788:20;;:6;:20;;;;22780:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22890:1;22869:23;;:9;:23;;;;22861:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22945:47;22966:6;22974:9;22985:6;22945:20;:47::i;:::-;23025:71;23047:6;23025:71;;;;;;;;;;;;;;;;;:9;:17;23035:6;23025:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;23005:9;:17;23015:6;23005:17;;;;;;;;;;;;;;;:91;;;;23130:32;23155:6;23130:9;:20;23140:9;23130:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;23107:9;:20;23117:9;23107:20;;;;;;;;;;;;;;;:55;;;;23195:9;23178:35;;23187:6;23178:35;;;23206:6;23178:35;;;;;;;;;;;;;;;;;;22682:539;;;:::o;23502:378::-;23605:1;23586:21;;:7;:21;;;;23578:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23656:49;23685:1;23689:7;23698:6;23656:20;:49::i;:::-;23733:24;23750:6;23733:12;;:16;;:24;;;;:::i;:::-;23718:12;:39;;;;23789:30;23812:6;23789:9;:18;23799:7;23789:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;23768:9;:18;23778:7;23768:18;;;;;;;;;;;;;;;:51;;;;23856:7;23835:37;;23852:1;23835:37;;;23865:6;23835:37;;;;;;;;;;;;;;;;;;23502:378;;:::o;31993:260::-;32084:6;32059:21;32069:10;32059:9;:21::i;:::-;:31;;32051:40;;;;;;32123:30;32146:6;32123:18;;:22;;:30;;;;:::i;:::-;32102:18;:51;;;;32164:44;32174:10;32194:4;32201:6;32164:9;:44::i;:::-;32224:21;32238:6;32224:21;;;;;;;;;;;;;;;;;;31993:260;:::o;759:106::-;812:15;847:10;840:17;;759:106;:::o;4837:181::-;4895:7;4915:9;4931:1;4927;:5;4915:17;;4956:1;4951;:6;;4943:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5009:1;5002:8;;;4837:181;;;;:::o;24212:418::-;24315:1;24296:21;;:7;:21;;;;24288:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24368:49;24389:7;24406:1;24410:6;24368:20;:49::i;:::-;24451:68;24474:6;24451:68;;;;;;;;;;;;;;;;;:9;:18;24461:7;24451:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;24430:9;:18;24440:7;24430:18;;;;;;;;;;;;;;;:89;;;;24545:24;24562:6;24545:12;;:16;;:24;;;;:::i;:::-;24530:12;:39;;;;24611:1;24585:37;;24594:7;24585:37;;;24615:6;24585:37;;;;;;;;;;;;;;;;;;24212:418;;:::o;5740:192::-;5826:7;5859:1;5854;:6;;5862:12;5846:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5886:9;5902:1;5898;:5;5886:17;;5923:1;5916:8;;;5740:192;;;;;:::o;7766:278::-;7852:7;7884:1;7880;:5;7887:12;7872:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7911:9;7927:1;7923;:5;;;;;;7911:17;;8035:1;8028:8;;;7766:278;;;;;:::o;26441:92::-;;;;:::o

Swarm Source

ipfs://4d3f7b75cd4ac9769270e0c0fc8f05684583b431136c63cee5223dc1405decfd
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.