ETH Price: $3,386.05 (-0.26%)
Gas: 2 Gwei

Token

Mythic Magic (MAGIC)
 

Overview

Max Total Supply

21,304.758885584079910507 MAGIC

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40.459152548469530926 MAGIC

Value
$0.00
0x548fa359b0efd820f93e43e2a3688b31765a55fc
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:
Magic

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-02-08
*/

//• ▌ ▄ ·.  ▄· ▄▌▄▄▄▄▄ ▄ .▄▪   ▄▄·     • ▌ ▄ ·.  ▄▄▄·  ▄▄ • ▪   ▄▄· 
//·██ ▐███▪▐█▪██▌•██  ██▪▐███ ▐█ ▌▪    ·██ ▐███▪▐█ ▀█ ▐█ ▀ ▪██ ▐█ ▌▪
//▐█ ▌▐▌▐█·▐█▌▐█▪ ▐█.▪██▀▐█▐█·██ ▄▄    ▐█ ▌▐▌▐█·▄█▀▀█ ▄█ ▀█▄▐█·██ ▄▄
//██ ██▌▐█▌ ▐█▀·. ▐█▌·██▌▐▀▐█▌▐███▌    ██ ██▌▐█▌▐█ ▪▐▌▐█▄▪▐█▐█▌▐███▌
//▀▀  █▪▀▀▀  ▀ •  ▀▀▀ ▀▀▀ ·▀▀▀·▀▀▀     ▀▀  █▪▀▀▀ ▀  ▀ ·▀▀▀▀ ▀▀▀·▀▀▀ 
// Staking Contract for $MYTHIC & $MAGIC Tokens 
// Stak $MYTHIC get $MAGIC
// Burn $MAGIC to Mint a Creep & Fight Creeps to win ETH!
// A Deflationary MEME & NFT experiment on Ethereum 🧙
//https://mythic.finance
//https://twitter.com/wizard_deVv
//https://t.me/mythicfinance

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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

// SPDX-License-Identifier: MIT

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: @openzeppelin/contracts/token/ERC20/ERC20.sol

// SPDX-License-Identifier: MIT

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 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/SafeERC20.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

    function safeTransfer(IERC20 token, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        // solhint-disable-next-line max-line-length
        require((value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).add(value);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero");
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) { // Return data is optional
            // solhint-disable-next-line max-line-length
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: contracts/magic.sol

pragma solidity ^0.6.0;


contract Magic is ERC20 {

    struct stakeTracker {
        uint256 lastBlockChecked;
        uint256 rewards;
        uint256 mythicStaked;
        uint256 uniV2Staked;
    }

    address private owner;
    address private fundAddress;

    uint256 private rewardsVar;
    uint256 private liquidityMultiplier;

    using SafeERC20 for IERC20;
    using SafeMath for uint256;

    address private mythicAddress;
    IERC20 private mythicToken;

    address public uniV2PairAddress;
    IERC20 private uniV2PairToken;

    uint256 private _totalMythicStaked;
    uint256 private _totalUniV2Staked;
    mapping(address => stakeTracker) private _stakedBalances;

    constructor() public ERC20("Mythic Magic", "MAGIC") {
        owner = msg.sender;
        _mint(msg.sender, 5000 * (10 ** 18));
        rewardsVar = 100000;
        liquidityMultiplier = 10;
    }

    event MythicStaked(address indexed user, uint256 amount, uint256 totalMythicStaked);
    event UniV2Staked(address indexed user, uint256 amount, uint256 totalUniV2Staked);
    event MythicWithdrawn(address indexed user, uint256 amount);
    event UniV2Withdrawn(address indexed user, uint256 amount);
    event Rewards(address indexed user, uint256 reward);

    modifier _onlyOwner() {
        require(msg.sender == owner);
        _;
    }

    modifier updateStakingReward(address account) {
        if (block.number > _stakedBalances[account].lastBlockChecked) {
            uint256 rewardBlocks = block.number
            .sub(_stakedBalances[account].lastBlockChecked);

            if (_stakedBalances[account].mythicStaked > 0) {
                _stakedBalances[account].rewards = _stakedBalances[account].rewards
                .add(
                    _stakedBalances[account].mythicStaked
                    .mul(rewardBlocks)
                    / rewardsVar);
            }

            if (_stakedBalances[account].uniV2Staked > 0) {
                _stakedBalances[account].rewards = _stakedBalances[account].rewards
                .add(
                    _stakedBalances[account].uniV2Staked
                    .mul(liquidityMultiplier)
                    .mul(rewardBlocks)
                    / rewardsVar);
            }

            _stakedBalances[account].lastBlockChecked = block.number;
            emit Rewards(account, _stakedBalances[account].rewards);
        }
        _;
    }

    modifier claimRewards() {
        uint256 reward = _stakedBalances[msg.sender].rewards;
        _stakedBalances[msg.sender].rewards = 0;
        _mint(msg.sender, reward.mul(9) / 10);
        uint256 fundingPoolReward = reward.mul(1) / 10;
        _mint(fundAddress, fundingPoolReward);

        emit Rewards(msg.sender, reward);
        _;
    }

    function setMythicAddress(address _mythicAddress) public _onlyOwner returns (uint256) {
        mythicAddress = _mythicAddress;
        mythicToken = IERC20(_mythicAddress);
    }

    function setUniV2PairAddress(address _uniV2PairAddress) public _onlyOwner returns (uint256) {
        uniV2PairAddress = _uniV2PairAddress;
        uniV2PairToken = IERC20(_uniV2PairAddress);
    }

    function setFundAddress(address _fundAddress) public _onlyOwner returns (uint256) {
        fundAddress = _fundAddress;
    }

    function setRewardsVar(uint256 _amount) public _onlyOwner {
        rewardsVar = _amount;
    }

    function setLiquidityMultiplier(uint256 _amount) public _onlyOwner {
        liquidityMultiplier = _amount;
    }

    function getLiquidityMultiplier() public view returns (uint256) {
        return liquidityMultiplier;
    }

    function getBlockNum() public view returns (uint256) {
        return block.number;
    }

    function getLastBlockCheckedNum(address _account) public view returns (uint256) {
        return _stakedBalances[_account].lastBlockChecked;
    }

    function getAddressMythicStakeAmount(address _account) public view returns (uint256) {
        return _stakedBalances[_account].mythicStaked;
    }

    function getAddressUniV2StakeAmount(address _account) public view returns (uint256) {
        return _stakedBalances[_account].uniV2Staked;
    }

    function totalStakedSupply() public view returns (uint256) {
        return _totalMythicStaked
        .add(_totalUniV2Staked
        .mul(liquidityMultiplier / 2));
    }

    function totalStakedMythic() public view returns (uint256) {
        return _totalMythicStaked;
    }

    function totalStakedUniV2() public view returns (uint256) {
        return _totalUniV2Staked;
    }

    function myRewardsBalance(address account) public view returns (uint256) {
        if (block.number > _stakedBalances[account].lastBlockChecked) {
            uint256 rewardBlocks = block.number
            .sub(_stakedBalances[account].lastBlockChecked);

            uint256 mythicRewards = 0;
            uint256 uniV2Rewards = 0;

            if (_stakedBalances[account].mythicStaked > 0) {
                mythicRewards = _stakedBalances[account].rewards
                .add(
                    _stakedBalances[account].mythicStaked
                    .mul(rewardBlocks)
                    / rewardsVar);
            }

            if (_stakedBalances[account].uniV2Staked > 0) {
                uniV2Rewards = _stakedBalances[account].rewards
                .add(
                    _stakedBalances[account].uniV2Staked
                    .mul(liquidityMultiplier)
                    .mul(rewardBlocks)
                    / rewardsVar);
            }

            return mythicRewards.add(uniV2Rewards);
        }

        return 0;
    }

    function stakeMythic(uint256 amount) public updateStakingReward(msg.sender) {
        _totalMythicStaked = _totalMythicStaked.add(amount);
        _stakedBalances[msg.sender].mythicStaked = _stakedBalances[msg.sender].mythicStaked.add(amount);
        mythicToken.safeTransferFrom(msg.sender, address(this), amount);
        emit MythicStaked(msg.sender, amount, _totalMythicStaked);
    }

    function stakeUniV2(uint256 amount) public updateStakingReward(msg.sender) {
        _totalUniV2Staked = _totalUniV2Staked.add(amount);
        _stakedBalances[msg.sender].uniV2Staked = _stakedBalances[msg.sender].uniV2Staked.add(amount);
        uniV2PairToken.safeTransferFrom(msg.sender, address(this), amount);
        emit UniV2Staked(msg.sender, amount, _totalUniV2Staked);
    }

    function withdrawMythic(uint256 amount) public updateStakingReward(msg.sender) claimRewards() {
        _totalMythicStaked = _totalMythicStaked.sub(amount);
        _stakedBalances[msg.sender].mythicStaked = _stakedBalances[msg.sender].mythicStaked.sub(amount);
        mythicToken.safeTransfer(msg.sender, amount);
        emit MythicWithdrawn(msg.sender, amount);
    }

    function withdrawUniV2(uint256 amount) public updateStakingReward(msg.sender) claimRewards() {
        _totalUniV2Staked = _totalUniV2Staked.sub(amount);
        _stakedBalances[msg.sender].uniV2Staked = _stakedBalances[msg.sender].uniV2Staked.sub(amount);
        uniV2PairToken.safeTransfer(msg.sender, amount);
        emit UniV2Withdrawn(msg.sender, amount);
    }

    function getReward() public updateStakingReward(msg.sender) {
        uint256 reward = _stakedBalances[msg.sender].rewards;
        _stakedBalances[msg.sender].rewards = 0;
        _mint(msg.sender, reward.mul(9) / 10);
        uint256 fundingPoolReward = reward.mul(1) / 10;
        _mint(fundAddress, fundingPoolReward);
        emit Rewards(msg.sender, reward);
    }
}

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":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalMythicStaked","type":"uint256"}],"name":"MythicStaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"MythicWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"Rewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalUniV2Staked","type":"uint256"}],"name":"UniV2Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"UniV2Withdrawn","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_account","type":"address"}],"name":"getAddressMythicStakeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getAddressUniV2StakeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBlockNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"getLastBlockCheckedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLiquidityMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"myRewardsBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_fundAddress","type":"address"}],"name":"setFundAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setLiquidityMultiplier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mythicAddress","type":"address"}],"name":"setMythicAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setRewardsVar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniV2PairAddress","type":"address"}],"name":"setUniV2PairAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeMythic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stakeUniV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedMythic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedUniV2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniV2PairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawMythic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawUniV2","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604080518082018252600c81526b4d7974686963204d6167696360a01b6020808301918252835180850190945260058452644d4147494360d81b908401528151919291620000639160039162000249565b5080516200007990600490602084019062000249565b505060058054601260ff1990911617610100600160a81b0319166101003390810291909117909155620000b8915069010f0cf064dd59200000620000ca565b620186a0600755600a600855620002ee565b6001600160a01b03821662000126576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200013d600083836001600160e01b03620001e216565b6200015981600254620001e760201b6200196c1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200018c9183906200196c620001e7821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b60008282018381101562000242576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200028c57805160ff1916838001178555620002bc565b82800160010185558215620002bc579182015b82811115620002bc5782518255916020019190600101906200029f565b50620002ca929150620002ce565b5090565b620002eb91905b80821115620002ca5760008155600101620002d5565b90565b61215480620002fe6000396000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063866fdc431161010f578063a9059cbb116100a2578063db260b3e11610071578063db260b3e14610575578063dd62ed3e14610592578063e60df1b6146105c0578063e78d13cc146105e6576101e5565b8063a9059cbb146104fe578063b5bd1b311461052a578063bcdc3cfc14610550578063be003d4c14610558576101e5565b8063a457c2d7116100de578063a457c2d71461047e578063a57306dc146104aa578063a71d3c11146104d0578063a8417932146104f6576101e5565b8063866fdc43146104345780638c691b48146104515780638dc9b7d51461046e57806395d89b4114610476576101e5565b806339509351116101875780635ef3c963116101565780635ef3c963146103ba57806370a08231146103e05780637f6c6f101461040657806385dc30041461040e576101e5565b8063395093511461033c5780633d18b9121461036857806353945d7b1461037057806359b60f0d14610394576101e5565b806318160ddd116101c357806318160ddd146102c6578063229b8018146102e057806323b872dd146102e8578063313ce5671461031e576101e5565b806306fdde03146101ea578063095ea7b3146102675780630da9137d146102a7575b600080fd5b6101f2610603565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610699565b604080519115158252519081900360200190f35b6102c4600480360360208110156102bd57600080fd5b50356106b7565b005b6102ce610915565b60408051918252519081900360200190f35b6102ce61091b565b610293600480360360608110156102fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610921565b6103266109ae565b6040805160ff9092168252519081900360200190f35b6102936004803603604081101561035257600080fd5b506001600160a01b0381351690602001356109b7565b6102c4610a0b565b610378610c1c565b604080516001600160a01b039092168252519081900360200190f35b6102ce600480360360208110156103aa57600080fd5b50356001600160a01b0316610c2b565b6102ce600480360360208110156103d057600080fd5b50356001600160a01b0316610c78565b6102ce600480360360208110156103f657600080fd5b50356001600160a01b0316610cc5565b6102ce610ce4565b6102ce6004803603602081101561042457600080fd5b50356001600160a01b0316610ce8565b6102c46004803603602081101561044a57600080fd5b5035610d2b565b6102c46004803603602081101561046757600080fd5b5035610d4c565b6102ce610fef565b6101f2610ff5565b6102936004803603604081101561049457600080fd5b506001600160a01b038135169060200135611056565b6102ce600480360360208110156104c057600080fd5b50356001600160a01b03166110c4565b6102ce600480360360208110156104e657600080fd5b50356001600160a01b0316611220565b6102ce61123e565b6102936004803603604081101561051457600080fd5b506001600160a01b038135169060200135611244565b6102ce6004803603602081101561054057600080fd5b50356001600160a01b0316611258565b6102ce611276565b6102c46004803603602081101561056e57600080fd5b50356112af565b6102c46004803603602081101561058b57600080fd5b50356114d0565b6102ce600480360360408110156105a857600080fd5b506001600160a01b03813581169160200135166114f1565b6102ce600480360360208110156105d657600080fd5b50356001600160a01b031661151c565b6102c4600480360360208110156105fc57600080fd5b5035611537565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106ad6106a66117da565b84846117de565b5060015b92915050565b336000818152600f6020526040902054431115610869576001600160a01b0381166000908152600f60205260408120546106f890439063ffffffff6118ca16565b6001600160a01b0383166000908152600f60205260409020600201549091501561079e576007546001600160a01b0383166000908152600f60205260409020600201546107819190610750908463ffffffff61191316565b8161075757fe5b6001600160a01b0385166000908152600f602052604090206001015491900463ffffffff61196c16565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610825576007546008546001600160a01b0384166000908152600f602052604090206003015461080892916107509185916107fc919063ffffffff61191316565b9063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b600d5461087c908363ffffffff61196c16565b600d55336000908152600f60205260409020600201546108a2908363ffffffff61196c16565b336000818152600f6020526040902060020191909155600a546108d2916001600160a01b039091169030856119c6565b600d54604080518481526020810192909252805133927f47c20d076d6a573d9d7fd9e80ad89b232cc4b398153189f3762d3e2097612c3392908290030190a25050565b60025490565b60085490565b600061092e848484611a26565b6109a48461093a6117da565b61099f8560405180606001604052806028815260200161205f602891396001600160a01b038a166000908152600160205260408120906109786117da565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b8d16565b6117de565b5060019392505050565b60055460ff1690565b60006106ad6109c46117da565b8461099f85600160006109d56117da565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61196c16565b336000818152600f6020526040902054431115610b80576001600160a01b0381166000908152600f6020526040812054610a4c90439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015610ac1576007546001600160a01b0383166000908152600f6020526040902060020154610aa49190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610b3c576007546008546001600160a01b0384166000908152600f6020526040902060030154610b1f92916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f60205260408120600101805491905590610bbc90600a610baf84600963ffffffff61191316565b81610bb657fe5b04611c24565b6000600a610bd183600163ffffffff61191316565b81610bd857fe5b6006549190049150610bf3906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2505050565b600b546001600160a01b031681565b60055460009061010090046001600160a01b03163314610c4a57600080fd5b600b80546001600160a01b039093166001600160a01b03199384168117909155600c80549093161790915590565b60055460009061010090046001600160a01b03163314610c9757600080fd5b600980546001600160a01b039093166001600160a01b03199384168117909155600a80549093161790915590565b6001600160a01b0381166000908152602081905260409020545b919050565b4390565b60055460009061010090046001600160a01b03163314610d0757600080fd5b600680546001600160a01b0319166001600160a01b03939093169290921790915590565b60055461010090046001600160a01b03163314610d4757600080fd5b600855565b336000818152600f6020526040902054431115610ec1576001600160a01b0381166000908152600f6020526040812054610d8d90439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015610e02576007546001600160a01b0383166000908152600f6020526040902060020154610de59190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610e7d576007546008546001600160a01b0384166000908152600f6020526040902060030154610e6092916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f60205260408120600101805491905590610ef090600a610baf84600963ffffffff61191316565b6000600a610f0583600163ffffffff61191316565b81610f0c57fe5b6006549190049150610f27906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2600e54610f5e908563ffffffff6118ca16565b600e55336000908152600f6020526040902060030154610f84908563ffffffff6118ca16565b336000818152600f6020526040902060030191909155600c54610fb3916001600160a01b039091169086611d20565b60408051858152905133917fc916d3dfe5eaffaabe135aa5f2dcfb6ad3c59fa6ddc1623724348499d3d552d4919081900360200190a250505050565b600d5490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561068f5780601f106106645761010080835404028352916020019161068f565b60006106ad6110636117da565b8461099f856040518060600160405280602581526020016120fa602591396001600061108d6117da565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b8d16565b6001600160a01b0381166000908152600f6020526040812054431115611218576001600160a01b0382166000908152600f602052604081205461110e90439063ffffffff6118ca16565b6001600160a01b0384166000908152600f60205260408120600201549192509081901561119d576007546001600160a01b0386166000908152600f602052604090206002015461119a9190611169908663ffffffff61191316565b8161117057fe5b6001600160a01b0388166000908152600f602052604090206001015491900463ffffffff61196c16565b91505b6001600160a01b0385166000908152600f6020526040902060030154156111fe576007546008546001600160a01b0387166000908152600f60205260409020600301546111fb92916111699187916107fc919063ffffffff61191316565b90505b61120e828263ffffffff61196c16565b9350505050610cdf565b506000919050565b6001600160a01b03166000908152600f602052604090206003015490565b600e5490565b60006106ad6112516117da565b8484611a26565b6001600160a01b03166000908152600f602052604090206002015490565b60006112aa61129b60026008548161128a57fe5b600e5491900463ffffffff61191316565b600d549063ffffffff61196c16565b905090565b336000818152600f6020526040902054431115611424576001600160a01b0381166000908152600f60205260408120546112f090439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015611365576007546001600160a01b0383166000908152600f60205260409020600201546113489190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f6020526040902060030154156113e0576007546008546001600160a01b0384166000908152600f60205260409020600301546113c392916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b600e54611437908363ffffffff61196c16565b600e55336000908152600f602052604090206003015461145d908363ffffffff61196c16565b336000818152600f6020526040902060030191909155600c5461148d916001600160a01b039091169030856119c6565b600e54604080518481526020810192909252805133927f8faacaba6b03d3347c6e0e9041707f6765f6c302c8b332670d3ad6c92a6944e792908290030190a25050565b60055461010090046001600160a01b031633146114ec57600080fd5b600755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600f602052604090205490565b336000818152600f60205260409020544311156116ac576001600160a01b0381166000908152600f602052604081205461157890439063ffffffff6118ca16565b6001600160a01b0383166000908152600f6020526040902060020154909150156115ed576007546001600160a01b0383166000908152600f60205260409020600201546115d09190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415611668576007546008546001600160a01b0384166000908152600f602052604090206003015461164b92916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f602052604081206001018054919055906116db90600a610baf84600963ffffffff61191316565b6000600a6116f083600163ffffffff61191316565b816116f757fe5b6006549190049150611712906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2600d54611749908563ffffffff6118ca16565b600d55336000908152600f602052604090206002015461176f908563ffffffff6118ca16565b336000818152600f6020526040902060020191909155600a5461179e916001600160a01b039091169086611d20565b60408051858152905133917f56e2ebb455663575b71c296808899fd3a894958a971fcb520ce096498b36cd87919081900360200190a250505050565b3390565b6001600160a01b0383166118235760405162461bcd60e51b81526004018080602001828103825260248152602001806120ac6024913960400191505060405180910390fd5b6001600160a01b0382166118685760405162461bcd60e51b8152600401808060200182810382526022815260200180611fd66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061190c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8d565b9392505050565b600082611922575060006106b1565b8282028284828161192f57fe5b041461190c5760405162461bcd60e51b815260040180806020018281038252602181526020018061203e6021913960400191505060405180910390fd5b60008282018381101561190c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611a20908590611d77565b50505050565b6001600160a01b038316611a6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806120876025913960400191505060405180910390fd5b6001600160a01b038216611ab05760405162461bcd60e51b8152600401808060200182810382526023815260200180611fb36023913960400191505060405180910390fd5b611abb838383611d72565b611afe81604051806060016040528060268152602001611ff8602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b8d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b33908263ffffffff61196c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578181015183820152602001611bc9565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611c7f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611c8b60008383611d72565b600254611c9e908263ffffffff61196c16565b6002556001600160a01b038216600090815260208190526040902054611cca908263ffffffff61196c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d72908490611d77565b505050565b6060611dcc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e289092919063ffffffff16565b805190915015611d7257808060200190516020811015611deb57600080fd5b5051611d725760405162461bcd60e51b815260040180806020018281038252602a8152602001806120d0602a913960400191505060405180910390fd5b6060611e378484600085611e3f565b949350505050565b6060611e4a85611fac565b611e9b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611eda5780518252601f199092019160209182019101611ebb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f3c576040519150601f19603f3d011682016040523d82523d6000602084013e611f41565b606091505b50915091508115611f55579150611e379050565b805115611f655780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611be1578181015183820152602001611bc9565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365c083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220971684abe9eef1cd9595bc0b69c9a641847bc572557903c4d9e032abc3658fc064736f6c63430006020033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063866fdc431161010f578063a9059cbb116100a2578063db260b3e11610071578063db260b3e14610575578063dd62ed3e14610592578063e60df1b6146105c0578063e78d13cc146105e6576101e5565b8063a9059cbb146104fe578063b5bd1b311461052a578063bcdc3cfc14610550578063be003d4c14610558576101e5565b8063a457c2d7116100de578063a457c2d71461047e578063a57306dc146104aa578063a71d3c11146104d0578063a8417932146104f6576101e5565b8063866fdc43146104345780638c691b48146104515780638dc9b7d51461046e57806395d89b4114610476576101e5565b806339509351116101875780635ef3c963116101565780635ef3c963146103ba57806370a08231146103e05780637f6c6f101461040657806385dc30041461040e576101e5565b8063395093511461033c5780633d18b9121461036857806353945d7b1461037057806359b60f0d14610394576101e5565b806318160ddd116101c357806318160ddd146102c6578063229b8018146102e057806323b872dd146102e8578063313ce5671461031e576101e5565b806306fdde03146101ea578063095ea7b3146102675780630da9137d146102a7575b600080fd5b6101f2610603565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561022c578181015183820152602001610214565b50505050905090810190601f1680156102595780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102936004803603604081101561027d57600080fd5b506001600160a01b038135169060200135610699565b604080519115158252519081900360200190f35b6102c4600480360360208110156102bd57600080fd5b50356106b7565b005b6102ce610915565b60408051918252519081900360200190f35b6102ce61091b565b610293600480360360608110156102fe57600080fd5b506001600160a01b03813581169160208101359091169060400135610921565b6103266109ae565b6040805160ff9092168252519081900360200190f35b6102936004803603604081101561035257600080fd5b506001600160a01b0381351690602001356109b7565b6102c4610a0b565b610378610c1c565b604080516001600160a01b039092168252519081900360200190f35b6102ce600480360360208110156103aa57600080fd5b50356001600160a01b0316610c2b565b6102ce600480360360208110156103d057600080fd5b50356001600160a01b0316610c78565b6102ce600480360360208110156103f657600080fd5b50356001600160a01b0316610cc5565b6102ce610ce4565b6102ce6004803603602081101561042457600080fd5b50356001600160a01b0316610ce8565b6102c46004803603602081101561044a57600080fd5b5035610d2b565b6102c46004803603602081101561046757600080fd5b5035610d4c565b6102ce610fef565b6101f2610ff5565b6102936004803603604081101561049457600080fd5b506001600160a01b038135169060200135611056565b6102ce600480360360208110156104c057600080fd5b50356001600160a01b03166110c4565b6102ce600480360360208110156104e657600080fd5b50356001600160a01b0316611220565b6102ce61123e565b6102936004803603604081101561051457600080fd5b506001600160a01b038135169060200135611244565b6102ce6004803603602081101561054057600080fd5b50356001600160a01b0316611258565b6102ce611276565b6102c46004803603602081101561056e57600080fd5b50356112af565b6102c46004803603602081101561058b57600080fd5b50356114d0565b6102ce600480360360408110156105a857600080fd5b506001600160a01b03813581169160200135166114f1565b6102ce600480360360208110156105d657600080fd5b50356001600160a01b031661151c565b6102c4600480360360208110156105fc57600080fd5b5035611537565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561068f5780601f106106645761010080835404028352916020019161068f565b820191906000526020600020905b81548152906001019060200180831161067257829003601f168201915b5050505050905090565b60006106ad6106a66117da565b84846117de565b5060015b92915050565b336000818152600f6020526040902054431115610869576001600160a01b0381166000908152600f60205260408120546106f890439063ffffffff6118ca16565b6001600160a01b0383166000908152600f60205260409020600201549091501561079e576007546001600160a01b0383166000908152600f60205260409020600201546107819190610750908463ffffffff61191316565b8161075757fe5b6001600160a01b0385166000908152600f602052604090206001015491900463ffffffff61196c16565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610825576007546008546001600160a01b0384166000908152600f602052604090206003015461080892916107509185916107fc919063ffffffff61191316565b9063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b600d5461087c908363ffffffff61196c16565b600d55336000908152600f60205260409020600201546108a2908363ffffffff61196c16565b336000818152600f6020526040902060020191909155600a546108d2916001600160a01b039091169030856119c6565b600d54604080518481526020810192909252805133927f47c20d076d6a573d9d7fd9e80ad89b232cc4b398153189f3762d3e2097612c3392908290030190a25050565b60025490565b60085490565b600061092e848484611a26565b6109a48461093a6117da565b61099f8560405180606001604052806028815260200161205f602891396001600160a01b038a166000908152600160205260408120906109786117da565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b8d16565b6117de565b5060019392505050565b60055460ff1690565b60006106ad6109c46117da565b8461099f85600160006109d56117da565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61196c16565b336000818152600f6020526040902054431115610b80576001600160a01b0381166000908152600f6020526040812054610a4c90439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015610ac1576007546001600160a01b0383166000908152600f6020526040902060020154610aa49190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610b3c576007546008546001600160a01b0384166000908152600f6020526040902060030154610b1f92916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f60205260408120600101805491905590610bbc90600a610baf84600963ffffffff61191316565b81610bb657fe5b04611c24565b6000600a610bd183600163ffffffff61191316565b81610bd857fe5b6006549190049150610bf3906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2505050565b600b546001600160a01b031681565b60055460009061010090046001600160a01b03163314610c4a57600080fd5b600b80546001600160a01b039093166001600160a01b03199384168117909155600c80549093161790915590565b60055460009061010090046001600160a01b03163314610c9757600080fd5b600980546001600160a01b039093166001600160a01b03199384168117909155600a80549093161790915590565b6001600160a01b0381166000908152602081905260409020545b919050565b4390565b60055460009061010090046001600160a01b03163314610d0757600080fd5b600680546001600160a01b0319166001600160a01b03939093169290921790915590565b60055461010090046001600160a01b03163314610d4757600080fd5b600855565b336000818152600f6020526040902054431115610ec1576001600160a01b0381166000908152600f6020526040812054610d8d90439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015610e02576007546001600160a01b0383166000908152600f6020526040902060020154610de59190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415610e7d576007546008546001600160a01b0384166000908152600f6020526040902060030154610e6092916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f60205260408120600101805491905590610ef090600a610baf84600963ffffffff61191316565b6000600a610f0583600163ffffffff61191316565b81610f0c57fe5b6006549190049150610f27906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2600e54610f5e908563ffffffff6118ca16565b600e55336000908152600f6020526040902060030154610f84908563ffffffff6118ca16565b336000818152600f6020526040902060030191909155600c54610fb3916001600160a01b039091169086611d20565b60408051858152905133917fc916d3dfe5eaffaabe135aa5f2dcfb6ad3c59fa6ddc1623724348499d3d552d4919081900360200190a250505050565b600d5490565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561068f5780601f106106645761010080835404028352916020019161068f565b60006106ad6110636117da565b8461099f856040518060600160405280602581526020016120fa602591396001600061108d6117da565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b8d16565b6001600160a01b0381166000908152600f6020526040812054431115611218576001600160a01b0382166000908152600f602052604081205461110e90439063ffffffff6118ca16565b6001600160a01b0384166000908152600f60205260408120600201549192509081901561119d576007546001600160a01b0386166000908152600f602052604090206002015461119a9190611169908663ffffffff61191316565b8161117057fe5b6001600160a01b0388166000908152600f602052604090206001015491900463ffffffff61196c16565b91505b6001600160a01b0385166000908152600f6020526040902060030154156111fe576007546008546001600160a01b0387166000908152600f60205260409020600301546111fb92916111699187916107fc919063ffffffff61191316565b90505b61120e828263ffffffff61196c16565b9350505050610cdf565b506000919050565b6001600160a01b03166000908152600f602052604090206003015490565b600e5490565b60006106ad6112516117da565b8484611a26565b6001600160a01b03166000908152600f602052604090206002015490565b60006112aa61129b60026008548161128a57fe5b600e5491900463ffffffff61191316565b600d549063ffffffff61196c16565b905090565b336000818152600f6020526040902054431115611424576001600160a01b0381166000908152600f60205260408120546112f090439063ffffffff6118ca16565b6001600160a01b0383166000908152600f602052604090206002015490915015611365576007546001600160a01b0383166000908152600f60205260409020600201546113489190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f6020526040902060030154156113e0576007546008546001600160a01b0384166000908152600f60205260409020600301546113c392916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b600e54611437908363ffffffff61196c16565b600e55336000908152600f602052604090206003015461145d908363ffffffff61196c16565b336000818152600f6020526040902060030191909155600c5461148d916001600160a01b039091169030856119c6565b600e54604080518481526020810192909252805133927f8faacaba6b03d3347c6e0e9041707f6765f6c302c8b332670d3ad6c92a6944e792908290030190a25050565b60055461010090046001600160a01b031633146114ec57600080fd5b600755565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600f602052604090205490565b336000818152600f60205260409020544311156116ac576001600160a01b0381166000908152600f602052604081205461157890439063ffffffff6118ca16565b6001600160a01b0383166000908152600f6020526040902060020154909150156115ed576007546001600160a01b0383166000908152600f60205260409020600201546115d09190610750908463ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000908152600f602052604090206003015415611668576007546008546001600160a01b0384166000908152600f602052604090206003015461164b92916107509185916107fc919063ffffffff61191316565b6001600160a01b0383166000908152600f60205260409020600101555b6001600160a01b0382166000818152600f6020908152604091829020438155600101548251908152915160008051602061201e8339815191529281900390910190a2505b336000818152600f602052604081206001018054919055906116db90600a610baf84600963ffffffff61191316565b6000600a6116f083600163ffffffff61191316565b816116f757fe5b6006549190049150611712906001600160a01b031682611c24565b604080518381529051339160008051602061201e833981519152919081900360200190a2600d54611749908563ffffffff6118ca16565b600d55336000908152600f602052604090206002015461176f908563ffffffff6118ca16565b336000818152600f6020526040902060020191909155600a5461179e916001600160a01b039091169086611d20565b60408051858152905133917f56e2ebb455663575b71c296808899fd3a894958a971fcb520ce096498b36cd87919081900360200190a250505050565b3390565b6001600160a01b0383166118235760405162461bcd60e51b81526004018080602001828103825260248152602001806120ac6024913960400191505060405180910390fd5b6001600160a01b0382166118685760405162461bcd60e51b8152600401808060200182810382526022815260200180611fd66022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600061190c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b8d565b9392505050565b600082611922575060006106b1565b8282028284828161192f57fe5b041461190c5760405162461bcd60e51b815260040180806020018281038252602181526020018061203e6021913960400191505060405180910390fd5b60008282018381101561190c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611a20908590611d77565b50505050565b6001600160a01b038316611a6b5760405162461bcd60e51b81526004018080602001828103825260258152602001806120876025913960400191505060405180910390fd5b6001600160a01b038216611ab05760405162461bcd60e51b8152600401808060200182810382526023815260200180611fb36023913960400191505060405180910390fd5b611abb838383611d72565b611afe81604051806060016040528060268152602001611ff8602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b8d16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611b33908263ffffffff61196c16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115611c1c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611be1578181015183820152602001611bc9565b50505050905090810190601f168015611c0e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216611c7f576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611c8b60008383611d72565b600254611c9e908263ffffffff61196c16565b6002556001600160a01b038216600090815260208190526040902054611cca908263ffffffff61196c16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611d72908490611d77565b505050565b6060611dcc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611e289092919063ffffffff16565b805190915015611d7257808060200190516020811015611deb57600080fd5b5051611d725760405162461bcd60e51b815260040180806020018281038252602a8152602001806120d0602a913960400191505060405180910390fd5b6060611e378484600085611e3f565b949350505050565b6060611e4a85611fac565b611e9b576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611eda5780518252601f199092019160209182019101611ebb565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f3c576040519150601f19603f3d011682016040523d82523d6000602084013e611f41565b606091505b50915091508115611f55579150611e379050565b805115611f655780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315611be1578181015183820152602001611bc9565b3b15159056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365c083a1647e3ee591bf42b82564ffb4d16fdbb26068f0080da911c8d8300fd84a536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220971684abe9eef1cd9595bc0b69c9a641847bc572557903c4d9e032abc3658fc064736f6c63430006020033

Deployed Bytecode Sourcemap

31242:7708:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31242:7708:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18604:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18604:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20710:169;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20710:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;37005:394;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37005:394:0;;:::i;:::-;;19679:100;;;:::i;:::-;;;;;;;;;;;;;;;;34827:109;;;:::i;21353:321::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;21353:321:0;;;;;;;;;;;;;;;;;:::i;19531:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22083:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22083:218:0;;;;;;;;:::i;38570:377::-;;;:::i;31713:31::-;;;:::i;:::-;;;;-1:-1:-1;;;;;31713:31:0;;;;;;;;;;;;;;34256:200;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34256:200:0;-1:-1:-1;;;;;34256:200:0;;:::i;34066:182::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34066:182:0;-1:-1:-1;;;;;34066:182:0;;:::i;19842:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19842:119:0;-1:-1:-1;;;;;19842:119:0;;:::i;34944:91::-;;;:::i;34464:127::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34464:127:0;-1:-1:-1;;;;;34464:127:0;;:::i;34704:115::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34704:115:0;;:::i;38189:373::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38189:373:0;;:::i;35694:103::-;;;:::i;18806:87::-;;;:::i;22804:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22804:269:0;;;;;;;;:::i;35914:1083::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35914:1083:0;-1:-1:-1;;;;;35914:1083:0;;:::i;35356:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35356:147:0;-1:-1:-1;;;;;35356:147:0;;:::i;35805:101::-;;;:::i;20174:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20174:175:0;;;;;;;;:::i;35199:149::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35199:149:0;-1:-1:-1;;;;;35199:149:0;;:::i;35511:175::-;;;:::i;37407:390::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37407:390:0;;:::i;34599:97::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34599:97:0;;:::i;20412:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;20412:151:0;;;;;;;;;;:::i;35043:148::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35043:148:0;-1:-1:-1;;;;;35043:148:0;;:::i;37805:376::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37805:376:0;;:::i;18604:83::-;18674:5;18667:12;;;;;;;;-1:-1:-1;;18667:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18641:13;;18667:12;;18674:5;;18667:12;;18674:5;18667:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18604:83;:::o;20710:169::-;20793:4;20810:39;20819:12;:10;:12::i;:::-;20833:7;20842:6;20810:8;:39::i;:::-;-1:-1:-1;20867:4:0;20710:169;;;;;:::o;37005:394::-;37069:10;32678:24;;;;:15;:24;;;;;:41;32663:12;:56;32659:1017;;;-1:-1:-1;;;;;32790:24:0;;32736:20;32790:24;;;:15;:24;;;;;:41;32759:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;32853:24:0;;32893:1;32853:24;;;:15;:24;;;;;:37;;;32736:96;;-1:-1:-1;32853:41:0;32849:306;;33128:10;;-1:-1:-1;;;;;33027:24:0;;;;;;:15;:24;;;;;:37;;;32950:189;;33128:10;33027:77;;33091:12;33027:77;:63;:77;:::i;:::-;:111;;;;;-1:-1:-1;;;;;32950:24:0;;;;;;:15;:24;;;;;:32;;;;33027:111;;32950:189;:54;:189;:::i;:::-;-1:-1:-1;;;;;32915:24:0;;;;;;:15;:24;;;;;:32;;:224;32849:306;-1:-1:-1;;;;;33175:24:0;;33214:1;33175:24;;;:15;:24;;;;;:36;;;:40;33171:351;;33495:10;;33411:19;;-1:-1:-1;;;;;33348:24:0;;;;;;:15;:24;;;;;:36;;;33271:235;;33495:10;33348:123;;33458:12;;33348:83;;:36;:83;:62;:83;:::i;:::-;:109;:123;:109;:123;:::i;33271:235::-;-1:-1:-1;;;;;33236:24:0;;;;;;:15;:24;;;;;:32;;:270;33171:351;-1:-1:-1;;;;;33538:24:0;;;;;;:15;:24;;;;;;;;;33582:12;33538:56;;33631:32;;;33614:50;;;;;;;-1:-1:-1;;;;;;;;;;;33614:50:0;;;;;;;;;32659:1017;;37113:18:::1;::::0;:30:::1;::::0;37136:6;37113:30:::1;:22;:30;:::i;:::-;37092:18;:51:::0;37213:10:::1;37197:27;::::0;;;:15:::1;:27;::::0;;;;:40:::1;;::::0;:52:::1;::::0;37242:6;37197:52:::1;:44;:52;:::i;:::-;37170:10;37154:27;::::0;;;:15:::1;:27;::::0;;;;:40:::1;;:95:::0;;;;37260:11:::1;::::0;:63:::1;::::0;-1:-1:-1;;;;;37260:11:0;;::::1;::::0;37309:4:::1;37316:6:::0;37260:28:::1;:63::i;:::-;37372:18;::::0;37339:52:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;37352:10:::1;::::0;37339:52:::1;::::0;;;;;;;::::1;37005:394:::0;;:::o;19679:100::-;19759:12;;19679:100;:::o;34827:109::-;34909:19;;34827:109;:::o;21353:321::-;21459:4;21476:36;21486:6;21494:9;21505:6;21476:9;:36::i;:::-;21523:121;21532:6;21540:12;:10;:12::i;:::-;21554:89;21592:6;21554:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21554:19:0;;;;;;:11;:19;;;;;;21574:12;:10;:12::i;:::-;-1:-1:-1;;;;;21554:33:0;;;;;;;;;;;;-1:-1:-1;21554:33:0;;;:89;;:37;:89;:::i;:::-;21523:8;:121::i;:::-;-1:-1:-1;21662:4:0;21353:321;;;;;:::o;19531:83::-;19597:9;;;;19531:83;:::o;22083:218::-;22171:4;22188:83;22197:12;:10;:12::i;:::-;22211:7;22220:50;22259:10;22220:11;:25;22232:12;:10;:12::i;:::-;-1:-1:-1;;;;;22220:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22220:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;38570:377::-;38618:10;32678:24;;;;:15;:24;;;;;:41;32663:12;:56;32659:1017;;;-1:-1:-1;;;;;32790:24:0;;32736:20;32790:24;;;:15;:24;;;;;:41;32759:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;32853:24:0;;32893:1;32853:24;;;:15;:24;;;;;:37;;;32736:96;;-1:-1:-1;32853:41:0;32849:306;;33128:10;;-1:-1:-1;;;;;33027:24:0;;;;;;:15;:24;;;;;:37;;;32950:189;;33128:10;33027:77;;33091:12;33027:77;:63;:77;:::i;32950:189::-;-1:-1:-1;;;;;32915:24:0;;;;;;:15;:24;;;;;:32;;:224;32849:306;-1:-1:-1;;;;;33175:24:0;;33214:1;33175:24;;;:15;:24;;;;;:36;;;:40;33171:351;;33495:10;;33411:19;;-1:-1:-1;;;;;33348:24:0;;;;;;:15;:24;;;;;:36;;;33271:235;;33495:10;33348:123;;33458:12;;33348:83;;:36;:83;:62;:83;:::i;33271:235::-;-1:-1:-1;;;;;33236:24:0;;;;;;:15;:24;;;;;:32;;:270;33171:351;-1:-1:-1;;;;;33538:24:0;;;;;;:15;:24;;;;;;;;;33582:12;33538:56;;33631:32;;;33614:50;;;;;;;-1:-1:-1;;;;;;;;;;;33614:50:0;;;;;;;;;32659:1017;;38674:10:::1;38641:14;38658:27:::0;;;:15:::1;:27;::::0;;;;:35:::1;;::::0;;38704:39;;;38658:35;38754:37:::1;::::0;38788:2:::1;38772:13;38658:35:::0;38783:1:::1;38772:13;:10;:13;:::i;:::-;:18;;;;;;38754:5;:37::i;:::-;38802:25;38846:2;38830:13;:6:::0;38841:1:::1;38830:13;:10;:13;:::i;:::-;:18;;;;;38865:11;::::0;38830:18;;::::1;::::0;-1:-1:-1;38859:37:0::1;::::0;-1:-1:-1;;;;;38865:11:0::1;38830:18:::0;38859:5:::1;:37::i;:::-;38912:27;::::0;;;;;;;38920:10:::1;::::0;-1:-1:-1;;;;;;;;;;;38912:27:0;;;;;::::1;::::0;;::::1;33686:1;;38570:377:::0;:::o;31713:31::-;;;-1:-1:-1;;;;;31713:31:0;;:::o;34256:200::-;32568:5;;34339:7;;32568:5;;;-1:-1:-1;;;;;32568:5:0;32554:10;:19;32546:28;;;;;;34359:16:::1;:36:::0;;-1:-1:-1;;;;;34359:36:0;;::::1;-1:-1:-1::0;;;;;;34359:36:0;;::::1;::::0;::::1;::::0;;;34406:14:::1;:42:::0;;;;::::1;;::::0;;;34256:200;:::o;34066:182::-;32568:5;;34143:7;;32568:5;;;-1:-1:-1;;;;;32568:5:0;32554:10;:19;32546:28;;;;;;34163:13:::1;:30:::0;;-1:-1:-1;;;;;34163:30:0;;::::1;-1:-1:-1::0;;;;;;34163:30:0;;::::1;::::0;::::1;::::0;;;34204:11:::1;:36:::0;;;;::::1;;::::0;;;34066:182;:::o;19842:119::-;-1:-1:-1;;;;;19935:18:0;;19908:7;19935:18;;;;;;;;;;;19842:119;;;;:::o;34944:91::-;35015:12;34944:91;:::o;34464:127::-;32568:5;;34537:7;;32568:5;;;-1:-1:-1;;;;;32568:5:0;32554:10;:19;32546:28;;;;;;34557:11:::1;:26:::0;;-1:-1:-1;;;;;;34557:26:0::1;-1:-1:-1::0;;;;;34557:26:0;;;::::1;::::0;;;::::1;::::0;;;;34464:127::o;34704:115::-;32568:5;;;;;-1:-1:-1;;;;;32568:5:0;32554:10;:19;32546:28;;;;;;34782:19:::1;:29:::0;34704:115::o;38189:373::-;38255:10;32678:24;;;;:15;:24;;;;;:41;32663:12;:56;32659:1017;;;-1:-1:-1;;;;;32790:24:0;;32736:20;32790:24;;;:15;:24;;;;;:41;32759:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;32853:24:0;;32893:1;32853:24;;;:15;:24;;;;;:37;;;32736:96;;-1:-1:-1;32853:41:0;32849:306;;33128:10;;-1:-1:-1;;;;;33027:24:0;;;;;;:15;:24;;;;;:37;;;32950:189;;33128:10;33027:77;;33091:12;33027:77;:63;:77;:::i;32950:189::-;-1:-1:-1;;;;;32915:24:0;;;;;;:15;:24;;;;;:32;;:224;32849:306;-1:-1:-1;;;;;33175:24:0;;33214:1;33175:24;;;:15;:24;;;;;:36;;;:40;33171:351;;33495:10;;33411:19;;-1:-1:-1;;;;;33348:24:0;;;;;;:15;:24;;;;;:36;;;33271:235;;33495:10;33348:123;;33458:12;;33348:83;;:36;:83;:62;:83;:::i;33271:235::-;-1:-1:-1;;;;;33236:24:0;;;;;;:15;:24;;;;;:32;;:270;33171:351;-1:-1:-1;;;;;33538:24:0;;;;;;:15;:24;;;;;;;;;33582:12;33538:56;;33631:32;;;33614:50;;;;;;;-1:-1:-1;;;;;;;;;;;33614:50:0;;;;;;;;;32659:1017;;33771:10:::1;33738:14;33755:27:::0;;;:15:::1;:27;::::0;;;;:35:::1;;::::0;;33801:39;;;33755:35;33851:37:::1;::::0;33885:2:::1;33869:13;33755:35:::0;33880:1:::1;33869:13;:10;:13;:::i;33851:37::-;33899:25;33943:2;33927:13;:6:::0;33938:1:::1;33927:13;:10;:13;:::i;:::-;:18;;;;;33962:11;::::0;33927:18;;::::1;::::0;-1:-1:-1;33956:37:0::1;::::0;-1:-1:-1;;;;;33962:11:0::1;33927:18:::0;33956:5:::1;:37::i;:::-;34011:27;::::0;;;;;;;34019:10:::1;::::0;-1:-1:-1;;;;;;;;;;;34011:27:0;;;;;::::1;::::0;;::::1;38313:17:::2;::::0;:29:::2;::::0;38335:6;38313:29:::2;:21;:29;:::i;:::-;38293:17;:49:::0;38411:10:::2;38395:27;::::0;;;:15:::2;:27;::::0;;;;:39:::2;;::::0;:51:::2;::::0;38439:6;38395:51:::2;:43;:51;:::i;:::-;38369:10;38353:27;::::0;;;:15:::2;:27;::::0;;;;:39:::2;;:93:::0;;;;38457:14:::2;::::0;:47:::2;::::0;-1:-1:-1;;;;;38457:14:0;;::::2;::::0;38497:6;38457:27:::2;:47::i;:::-;38520:34;::::0;;;;;;;38535:10:::2;::::0;38520:34:::2;::::0;;;;;::::2;::::0;;::::2;33686:1:::1;;38189:373:::0;;:::o;35694:103::-;35771:18;;35694:103;:::o;18806:87::-;18878:7;18871:14;;;;;;;;-1:-1:-1;;18871:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18845:13;;18871:14;;18878:7;;18871:14;;18878:7;18871:14;;;;;;;;;;;;;;;;;;;;;;;;22804:269;22897:4;22914:129;22923:12;:10;:12::i;:::-;22937:7;22946:96;22985:15;22946:96;;;;;;;;;;;;;;;;;:11;:25;22958:12;:10;:12::i;:::-;-1:-1:-1;;;;;22946:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22946:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;35914:1083::-;-1:-1:-1;;;;;36017:24:0;;35978:7;36017:24;;;:15;:24;;;;;:41;36002:12;:56;35998:971;;;-1:-1:-1;;;;;36129:24:0;;36075:20;36129:24;;;:15;:24;;;;;:41;36098:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;36273:24:0;;36188:21;36273:24;;;:15;:24;;;;;:37;;;36075:96;;-1:-1:-1;36188:21:0;;;36273:41;36269:287;;36529:10;;-1:-1:-1;;;;;36428:24:0;;;;;;:15;:24;;;;;:37;;;36351:189;;36529:10;36428:77;;36492:12;36428:77;:63;:77;:::i;:::-;:111;;;;;-1:-1:-1;;;;;36351:24:0;;;;;;:15;:24;;;;;:32;;;;36428:111;;36351:189;:54;:189;:::i;:::-;36335:205;;36269:287;-1:-1:-1;;;;;36576:24:0;;36615:1;36576:24;;;:15;:24;;;;;:36;;;:40;36572:331;;36876:10;;36792:19;;-1:-1:-1;;;;;36729:24:0;;;;;;:15;:24;;;;;:36;;;36652:235;;36876:10;36729:123;;36839:12;;36729:83;;:36;:83;:62;:83;:::i;36652:235::-;36637:250;;36572:331;36926:31;:13;36944:12;36926:31;:17;:31;:::i;:::-;36919:38;;;;;;;35998:971;-1:-1:-1;36988:1:0;35914:1083;;;:::o;35356:147::-;-1:-1:-1;;;;;35458:25:0;35431:7;35458:25;;;:15;:25;;;;;:37;;;;35356:147::o;35805:101::-;35881:17;;35805:101;:::o;20174:175::-;20260:4;20277:42;20287:12;:10;:12::i;:::-;20301:9;20312:6;20277:9;:42::i;35199:149::-;-1:-1:-1;;;;;35302:25:0;35275:7;35302:25;;;:15;:25;;;;;:38;;;;35199:149::o;35511:175::-;35561:7;35588:90;35621:56;35675:1;35653:19;;:23;;;;;35621:17;;;35653:23;;35621:56;:31;:56;:::i;:::-;35588:18;;;:90;:32;:90;:::i;:::-;35581:97;;35511:175;:::o;37407:390::-;37470:10;32678:24;;;;:15;:24;;;;;:41;32663:12;:56;32659:1017;;;-1:-1:-1;;;;;32790:24:0;;32736:20;32790:24;;;:15;:24;;;;;:41;32759:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;32853:24:0;;32893:1;32853:24;;;:15;:24;;;;;:37;;;32736:96;;-1:-1:-1;32853:41:0;32849:306;;33128:10;;-1:-1:-1;;;;;33027:24:0;;;;;;:15;:24;;;;;:37;;;32950:189;;33128:10;33027:77;;33091:12;33027:77;:63;:77;:::i;32950:189::-;-1:-1:-1;;;;;32915:24:0;;;;;;:15;:24;;;;;:32;;:224;32849:306;-1:-1:-1;;;;;33175:24:0;;33214:1;33175:24;;;:15;:24;;;;;:36;;;:40;33171:351;;33495:10;;33411:19;;-1:-1:-1;;;;;33348:24:0;;;;;;:15;:24;;;;;:36;;;33271:235;;33495:10;33348:123;;33458:12;;33348:83;;:36;:83;:62;:83;:::i;33271:235::-;-1:-1:-1;;;;;33236:24:0;;;;;;:15;:24;;;;;:32;;:270;33171:351;-1:-1:-1;;;;;33538:24:0;;;;;;:15;:24;;;;;;;;;33582:12;33538:56;;33631:32;;;33614:50;;;;;;;-1:-1:-1;;;;;;;;;;;33614:50:0;;;;;;;;;32659:1017;;37513:17:::1;::::0;:29:::1;::::0;37535:6;37513:29:::1;:21;:29;:::i;:::-;37493:17;:49:::0;37611:10:::1;37595:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;::::0;:51:::1;::::0;37639:6;37595:51:::1;:43;:51;:::i;:::-;37569:10;37553:27;::::0;;;:15:::1;:27;::::0;;;;:39:::1;;:93:::0;;;;37657:14:::1;::::0;:66:::1;::::0;-1:-1:-1;;;;;37657:14:0;;::::1;::::0;37709:4:::1;37716:6:::0;37657:31:::1;:66::i;:::-;37771:17;::::0;37739:50:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;;37751:10:::1;::::0;37739:50:::1;::::0;;;;;;;::::1;37407:390:::0;;:::o;34599:97::-;32568:5;;;;;-1:-1:-1;;;;;32568:5:0;32554:10;:19;32546:28;;;;;;34668:10:::1;:20:::0;34599:97::o;20412:151::-;-1:-1:-1;;;;;20528:18:0;;;20501:7;20528:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20412:151::o;35043:148::-;-1:-1:-1;;;;;35141:25:0;35114:7;35141:25;;;:15;:25;;;;;:42;;35043:148::o;37805:376::-;37872:10;32678:24;;;;:15;:24;;;;;:41;32663:12;:56;32659:1017;;;-1:-1:-1;;;;;32790:24:0;;32736:20;32790:24;;;:15;:24;;;;;:41;32759:73;;:12;;:73;:30;:73;:::i;:::-;-1:-1:-1;;;;;32853:24:0;;32893:1;32853:24;;;:15;:24;;;;;:37;;;32736:96;;-1:-1:-1;32853:41:0;32849:306;;33128:10;;-1:-1:-1;;;;;33027:24:0;;;;;;:15;:24;;;;;:37;;;32950:189;;33128:10;33027:77;;33091:12;33027:77;:63;:77;:::i;32950:189::-;-1:-1:-1;;;;;32915:24:0;;;;;;:15;:24;;;;;:32;;:224;32849:306;-1:-1:-1;;;;;33175:24:0;;33214:1;33175:24;;;:15;:24;;;;;:36;;;:40;33171:351;;33495:10;;33411:19;;-1:-1:-1;;;;;33348:24:0;;;;;;:15;:24;;;;;:36;;;33271:235;;33495:10;33348:123;;33458:12;;33348:83;;:36;:83;:62;:83;:::i;33271:235::-;-1:-1:-1;;;;;33236:24:0;;;;;;:15;:24;;;;;:32;;:270;33171:351;-1:-1:-1;;;;;33538:24:0;;;;;;:15;:24;;;;;;;;;33582:12;33538:56;;33631:32;;;33614:50;;;;;;;-1:-1:-1;;;;;;;;;;;33614:50:0;;;;;;;;;32659:1017;;33771:10:::1;33738:14;33755:27:::0;;;:15:::1;:27;::::0;;;;:35:::1;;::::0;;33801:39;;;33755:35;33851:37:::1;::::0;33885:2:::1;33869:13;33755:35:::0;33880:1:::1;33869:13;:10;:13;:::i;33851:37::-;33899:25;33943:2;33927:13;:6:::0;33938:1:::1;33927:13;:10;:13;:::i;:::-;:18;;;;;33962:11;::::0;33927:18;;::::1;::::0;-1:-1:-1;33956:37:0::1;::::0;-1:-1:-1;;;;;33962:11:0::1;33927:18:::0;33956:5:::1;:37::i;:::-;34011:27;::::0;;;;;;;34019:10:::1;::::0;-1:-1:-1;;;;;;;;;;;34011:27:0;;;;;::::1;::::0;;::::1;37931:18:::2;::::0;:30:::2;::::0;37954:6;37931:30:::2;:22;:30;:::i;:::-;37910:18;:51:::0;38031:10:::2;38015:27;::::0;;;:15:::2;:27;::::0;;;;:40:::2;;::::0;:52:::2;::::0;38060:6;38015:52:::2;:44;:52;:::i;:::-;37988:10;37972:27;::::0;;;:15:::2;:27;::::0;;;;:40:::2;;:95:::0;;;;38078:11:::2;::::0;:44:::2;::::0;-1:-1:-1;;;;;38078:11:0;;::::2;::::0;38115:6;38078:24:::2;:44::i;:::-;38138:35;::::0;;;;;;;38154:10:::2;::::0;38138:35:::2;::::0;;;;;::::2;::::0;;::::2;33686:1:::1;;37805:376:::0;;:::o;1701:106::-;1789:10;1701:106;:::o;25949:346::-;-1:-1:-1;;;;;26051:19:0;;26043:68;;;;-1:-1:-1;;;26043:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26130:21:0;;26122:68;;;;-1:-1:-1;;;26122:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26203:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26255:32;;;;;;;;;;;;;;;;;25949:346;;;:::o;6309:136::-;6367:7;6394:43;6398:1;6401;6394:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;6387:50;6309:136;-1:-1:-1;;;6309:136:0:o;7199:471::-;7257:7;7502:6;7498:47;;-1:-1:-1;7532:1:0;7525:8;;7498:47;7569:5;;;7573:1;7569;:5;:1;7593:5;;;;;:10;7585:56;;;;-1:-1:-1;;;7585:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5845:181;5903:7;5935:5;;;5959:6;;;;5951:46;;;;;-1:-1:-1;;;5951:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28293:205;28421:68;;;-1:-1:-1;;;;;28421:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28421:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28394:96:0;;28414:5;;28394:19;:96::i;:::-;28293:205;;;;:::o;23563:539::-;-1:-1:-1;;;;;23669:20:0;;23661:70;;;;-1:-1:-1;;;23661:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23750:23:0;;23742:71;;;;-1:-1:-1;;;23742:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23826:47;23847:6;23855:9;23866:6;23826:20;:47::i;:::-;23906:71;23928:6;23906:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23906:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;23886:17:0;;;:9;:17;;;;;;;;;;;:91;;;;24011:20;;;;;;;:32;;24036:6;24011:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;23988:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;24059:35;;;;;;;23988:20;;24059:35;;;;;;;;;;;;;23563:539;;;:::o;6748:192::-;6834:7;6870:12;6862:6;;;;6854:29;;;;-1:-1:-1;;;6854:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6854:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6906:5:0;;;6748:192::o;24383:378::-;-1:-1:-1;;;;;24467:21:0;;24459:65;;;;;-1:-1:-1;;;24459:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:49;24566:1;24570:7;24579:6;24537:20;:49::i;:::-;24614:12;;:24;;24631:6;24614:24;:16;:24;:::i;:::-;24599:12;:39;-1:-1:-1;;;;;24670:18:0;;:9;:18;;;;;;;;;;;:30;;24693:6;24670:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;24649:18:0;;:9;:18;;;;;;;;;;;:51;;;;24716:37;;;;;;;24649:18;;:9;;24716:37;;;;;;;;;;24383:378;;:::o;28108:177::-;28218:58;;;-1:-1:-1;;;;;28218:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28218:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28191:86:0;;28211:5;;28191:19;:86::i;:::-;28108:177;;;:::o;30413:761::-;30837:23;30863:69;30891:4;30863:69;;;;;;;;;;;;;;;;;30871:5;-1:-1:-1;;;;;30863:27:0;;;:69;;;;;:::i;:::-;30947:17;;30837:95;;-1:-1:-1;30947:21:0;30943:224;;31089:10;31078:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31078:30:0;31070:85;;;;-1:-1:-1;;;31070:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14020:196;14123:12;14155:53;14178:6;14186:4;14192:1;14195:12;14155:22;:53::i;:::-;14148:60;14020:196;-1:-1:-1;;;;14020:196:0:o;15397:979::-;15527:12;15560:18;15571:6;15560:10;:18::i;:::-;15552:60;;;;;-1:-1:-1;;;15552:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;15686:12;15700:23;15727:6;-1:-1:-1;;;;;15727:11:0;15747:8;15758:4;15727:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;15727:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;15685:78:0;;;;15778:7;15774:595;;;15809:10;-1:-1:-1;15802:17:0;;-1:-1:-1;15802:17:0;15774:595;15923:17;;:21;15919:439;;16186:10;16180:17;16247:15;16234:10;16230:2;16226:19;16219:44;16134:148;16322:20;;-1:-1:-1;;;16322:20:0;;;;;;;;;;;;;;;;;16329:12;;16322:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;11102:422:0;11469:20;11508:8;;;11102:422::o

Swarm Source

ipfs://971684abe9eef1cd9595bc0b69c9a641847bc572557903c4d9e032abc3658fc0
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.