ETH Price: $2,240.32 (-6.35%)

Token

Super Yin Yang (SYYF)
 

Overview

Max Total Supply

78,412.164221228046383906 SYYF

Holders

81

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,937.385068334848842479 SYYF

Value
$0.00
0xa4812dfa2443f7d90426892eec780c04b6941ddb
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:
SuperYinYang

Compiler Version
v0.7.1+commit.f4a555be

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-22
*/

pragma solidity ^0.7.1;


// 
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// 
/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

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

// 
/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // According to EIP-1052, 0x0 is the value returned for not-yet created accounts
        // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
        // for accounts without code, i.e. `keccak256('')`
        bytes32 codehash;
        bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
        // solhint-disable-next-line no-inline-assembly
        assembly { codehash := extcodehash(account) }
        return (codehash != accountHash && codehash != 0x0);
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return _functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        return _functionCallWithValue(target, data, value, errorMessage);
    }

    function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) {
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: weiValue }(data);
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

// 
/**
 * @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) {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is
     * called.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal {
        _decimals = decimals_;
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// 
/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}

//             .,ad88888888baa,
//         ,d8P"""        ""9888ba.
//      .a8"          ,ad88888888888a
//     aP'          ,88888888888888888a
//   ,8"           ,88888888888888888888,
//  ,8'            (888888888( )888888888,
// ,8'             `8888888888888888888888
// 8)               `888888888888888888888,
// 8                  "8888888888888888888)
// 8                   `888888888888888888)
// 8)                    "8888888888888888
// (b                     "88888888888888'
// `8,        (8)          8888888888888)
//  "8a                   ,888888888888)
//    V8,                 d88888888888"
//     `8b,             ,d8888888888P'
//       `V8a,       ,ad8888888888P'  YIN 5% bonus
//          ""88888888888888888P"     YANG 10% burn
//               """"""""""""         http://yinyang.finance
interface IUniswapV2Factory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IUniswapV2Router01 {
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);    
}

interface IRandom {
    function r(address _s1, address _s2, uint256 _s3) external pure returns (uint256);
}

contract SuperYinYang is ERC20Burnable, Pausable, Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

    uint256 public constant YIN = 5;

    uint256 public constant YANG = 10;

    uint256 public constant SUPER_SAIYANG = 25;

    uint256 public totalYinAmountMinted;

    uint256 public totalYangAmountBurned;

    uint256 public unpauseTime;

    mapping(address => bool) public bypassYinYang;

    IUniswapV2Router01 internal constant UNISWAPV2_ROUTER = IUniswapV2Router01(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    address public uniswapPool;

    IERC20 public immutable yinYangAddress;

    IRandom public immutable random;

    struct Snapshot {
        uint256 balance;
        uint256 lastSnapshotTime;
    }

    mapping (address => Snapshot) public snapshots;    

    event Yin(address sender, uint256 amount);

    event PoorYin(address sender, uint256 amount);

    event Yang(address sender, uint256 amount);

    event SuperSaiyang(address sender, uint256 amount);

    constructor(IERC20 _yinYangAddress, IRandom _randomAddress)
    Ownable()
    ERC20("Super Yin Yang", "SYYF")
    {
        yinYangAddress = _yinYangAddress;
        random = _randomAddress;
        _createPair();
        _pause();
    }

    function _createPair() internal virtual {
        uniswapPool = UNISWAP_FACTORY.createPair(UNISWAPV2_ROUTER.WETH(), address(this));
        _addBypassYinYang(uniswapPool, true);
    }

    function unpause(address _stakingRewards) external virtual onlyOwner {
        super._unpause();
        _mint(_stakingRewards, 45_000 * 10**18); // initial liquidity pool
        _addBypassYinYang(_stakingRewards, true);

        uint256 liquidityETH = address(this).balance;
        uint256 tokens = liquidityETH.mul(90); // 90 tokens per eth
        _mint(address(this), tokens);
        _addBypassYinYang(address(this), true);
        _approve(address(this), address(UNISWAPV2_ROUTER), tokens);
        UNISWAPV2_ROUTER.addLiquidityETH
        { value: liquidityETH }
        (
            address(this),
            tokens,
            tokens,
            liquidityETH,
            address(0),
            block.timestamp
        );

        unpauseTime = block.timestamp;
    }

    function _addBypassYinYang(address _address, bool _bypass) internal {
        bypassYinYang[_address] = _bypass;
    }

    function _transfer(address _sender, address _recipient, uint256 _amount) internal virtual override
    whenNotPaused
    {
        if (!bypassYinYang[_sender]) {
            if (block.timestamp > unpauseTime + 24 hours) {
                uint256 r = random.r(_sender, _recipient, _amount);
                bool isYin = ((r % 101) & 1) == 0;
                uint256 yinYangAmount = _amount.mul(isYin ? YIN : YANG).div(100);
                if (isYin) {
                    if (totalYinAmountMinted + yinYangAmount < totalYangAmountBurned && 
                        balanceOf(_sender) >= snapshots[_sender].balance &&
                        block.timestamp > snapshots[_sender].lastSnapshotTime + 24 hours)
                    {
                        super._mint(_sender, yinYangAmount);
                        totalYinAmountMinted = totalYinAmountMinted.add(yinYangAmount);
                        emit Yin(_sender, yinYangAmount);
                    } else {
                        emit PoorYin(_sender, yinYangAmount);
                    }
                } else {
                    super._burn(_sender, yinYangAmount);
                    totalYangAmountBurned = totalYangAmountBurned.add(yinYangAmount);
                    _amount = _amount.sub(yinYangAmount);
                    emit Yang(_sender, yinYangAmount);
                }
            } else {
                uint256 superSaiyang = _amount.mul(SUPER_SAIYANG).div(100);
                super._burn(_sender, superSaiyang);
                totalYangAmountBurned = totalYangAmountBurned.add(superSaiyang);
                _amount = _amount.sub(superSaiyang);
                emit SuperSaiyang(_sender, superSaiyang);
            }
            _amount = _amount.sub(1);
        }
        super._transfer(_sender, _recipient, _amount);
        _updateSnapshot(_sender);
        _updateSnapshot(_recipient);
    }

    function _mint(address account, uint256 value) internal virtual override {
        super._mint(account, value);
        _updateSnapshot(account);
    }

    function _burn(address account, uint256 value) internal virtual override {
        super._burn(account, value);
        _updateSnapshot(account);
    }

    function _updateSnapshot(address _address) internal {
        Snapshot storage snapshot = snapshots[_address];
        if (block.timestamp > snapshot.lastSnapshotTime + 24 hours) {
            snapshot.balance = balanceOf(_address);
            snapshot.lastSnapshotTime = block.timestamp;
        }
    }

    // Swap

    function swap(uint256 _amount) external {
        require(block.timestamp < 1600898400, "swap period is over"); // 2020-09-23T22:00:00.000+00:00 
        yinYangAddress.safeTransferFrom(msg.sender, address(this), _amount);
        _mint(msg.sender, _amount);
        _updateSnapshot(msg.sender);
    }

    function release() external onlyOwner {
        uint256 amount = yinYangAddress.balanceOf(address(this));
        yinYangAddress.safeTransfer(owner(), amount);
    }

    receive() payable external {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_yinYangAddress","type":"address"},{"internalType":"contract IRandom","name":"_randomAddress","type":"address"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PoorYin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SuperSaiyang","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Yang","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Yin","type":"event"},{"inputs":[],"name":"SUPER_SAIYANG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YANG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YIN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bypassYinYang","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"random","outputs":[{"internalType":"contract IRandom","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"snapshots","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"lastSnapshotTime","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYangAmountBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalYinAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingRewards","type":"address"}],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"yinYangAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b5060405162003ac138038062003ac1833981810160405260408110156200003757600080fd5b8101908080519060200190929190805190602001909291905050506040518060400160405280600e81526020017f53757065722059696e2059616e670000000000000000000000000000000000008152506040518060400160405280600481526020017f53595946000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000d6929190620005b7565b508060049080519060200190620000ef929190620005b7565b506012600560006101000a81548160ff021916908360ff16021790555050506000600560016101000a81548160ff02191690831515021790555060006200013b6200027060201b60201c565b905080600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050620002586200027860201b60201c565b620002686200045f60201b60201c565b50506200065d565b600033905090565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c65396737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200030357600080fd5b505afa15801562000318573d6000803e3d6000fd5b505050506040513d60208110156200032f57600080fd5b8101908080519060200190929190505050306040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050602060405180830381600087803b158015620003ab57600080fd5b505af1158015620003c0573d6000803e3d6000fd5b505050506040513d6020811015620003d757600080fd5b8101908080519060200190929190505050600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200045d600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200055c60201b60201c565b565b600560019054906101000a900460ff1615620004e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600560016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200052f6200027060201b60201c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005fa57805160ff19168380011785556200062b565b828001600101855582156200062b579182015b828111156200062a5782518255916020019190600101906200060d565b5b5090506200063a91906200063e565b5090565b5b80821115620006595760008160009055506001016200063f565b5090565b60805160601c60a05160601c6134266200069b600039806110d95280611d9d5250806112d0528061142752806114f752806115ef52506134266000f3fe6080604052600436106101e75760003560e01c806373452cd711610102578063a457c2d711610095578063d2f131f611610064578063d2f131f614610a67578063d356593414610a92578063dd62ed3e14610abd578063f2fde38b14610b42576101ee565b8063a457c2d714610903578063a9059cbb14610974578063bdd3d825146109e5578063c74c0fac14610a26576101ee565b80638be8ef91116100d15780638be8ef91146107cc5780638da5cb5b146107f757806394b918de1461083857806395d89b4114610873576101ee565b806373452cd7146106ee5780637870bf261461072f57806379cc67901461075a57806386d1a69f146107b5576101ee565b8063395093511161017a5780635c975abb116101495780635c975abb146106045780635ec01e4d1461063157806370a0823114610672578063715018a6146106d7576101ee565b806339509351146104dc57806342966c681461054d57806357b001f91461058857806359d9d38b146105d9576101ee565b806323b872dd116101b657806323b872dd14610386578063313ce5671461041757806334b3081f1461044557806337f9cd5a146104b1576101ee565b806306fdde03146101f3578063095ea7b31461028357806318160ddd146102f4578063201d44111461031f576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610b93565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028f57600080fd5b506102dc600480360360408110156102a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c35565b60405180821515815260200191505060405180910390f35b34801561030057600080fd5b50610309610c53565b6040518082815260200191505060405180910390f35b34801561032b57600080fd5b5061036e6004803603602081101561034257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c5d565b60405180821515815260200191505060405180910390f35b34801561039257600080fd5b506103ff600480360360608110156103a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7d565b60405180821515815260200191505060405180910390f35b34801561042357600080fd5b5061042c610d56565b604051808260ff16815260200191505060405180910390f35b34801561045157600080fd5b506104946004803603602081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6d565b604051808381526020018281526020019250505060405180910390f35b3480156104bd57600080fd5b506104c6610d91565b6040518082815260200191505060405180910390f35b3480156104e857600080fd5b50610535600480360360408110156104ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d97565b60405180821515815260200191505060405180910390f35b34801561055957600080fd5b506105866004803603602081101561057057600080fd5b8101908080359060200190929190505050610e4a565b005b34801561059457600080fd5b506105d7600480360360208110156105ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e5e565b005b3480156105e557600080fd5b506105ee6110bb565b6040518082815260200191505060405180910390f35b34801561061057600080fd5b506106196110c0565b60405180821515815260200191505060405180910390f35b34801561063d57600080fd5b506106466110d7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067e57600080fd5b506106c16004803603602081101561069557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110fb565b6040518082815260200191505060405180910390f35b3480156106e357600080fd5b506106ec611143565b005b3480156106fa57600080fd5b506107036112ce565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561073b57600080fd5b506107446112f2565b6040518082815260200191505060405180910390f35b34801561076657600080fd5b506107b36004803603604081101561077d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f7565b005b3480156107c157600080fd5b506107ca611359565b005b3480156107d857600080fd5b506107e161153e565b6040518082815260200191505060405180910390f35b34801561080357600080fd5b5061080c611544565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084457600080fd5b506108716004803603602081101561085b57600080fd5b810190808035906020019092919050505061156e565b005b34801561087f57600080fd5b5061088861164a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108c85780820151818401526020810190506108ad565b50505050905090810190601f1680156108f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561090f57600080fd5b5061095c6004803603604081101561092657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ec565b60405180821515815260200191505060405180910390f35b34801561098057600080fd5b506109cd6004803603604081101561099757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117b9565b60405180821515815260200191505060405180910390f35b3480156109f157600080fd5b506109fa6117d7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3257600080fd5b50610a3b6117fd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a7357600080fd5b50610a7c611815565b6040518082815260200191505060405180910390f35b348015610a9e57600080fd5b50610aa761181b565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610b2c60048036036040811015610ae057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611820565b6040518082815260200191505060405180910390f35b348015610b4e57600080fd5b50610b9160048036036020811015610b6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a7565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c49610c42611ab7565b8484611abf565b6001905092915050565b6000600254905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000610c8a848484611cb6565b610d4b84610c96611ab7565b610d46856040518060600160405280602881526020016132ec60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cfc611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b611abf565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600b6020528060005260406000206000915090508060000154908060010154905082565b60065481565b6000610e40610da4611ab7565b84610e3b8560016000610db5611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b611abf565b6001905092915050565b610e5b610e55611ab7565b8261233c565b50565b610e66611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610f30612353565b610f448169098774738bc822200000612446565b610f4f81600161245d565b60004790506000610f6a605a836124b890919063ffffffff16565b9050610f763082612446565b610f8130600161245d565b610fa030737a250d5630b4cf539739df2c5dacb4c659f2488d83611abf565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308485876000426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561105c57600080fd5b505af1158015611070573d6000803e3d6000fd5b50505050506040513d606081101561108757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505050505042600881905550505050565b600581565b6000600560019054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61114b611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7f000000000000000000000000000000000000000000000000000000000000000081565b601981565b6000611336826040518060600160405280602481526020016133146024913961132786611322611ab7565b611820565b6121f49092919063ffffffff16565b905061134a83611344611ab7565b83611abf565b611354838361233c565b505050565b611361611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114ac57600080fd5b505afa1580156114c0573d6000803e3d6000fd5b505050506040513d60208110156114d657600080fd5b8101908080519060200190929190505050905061153b6114f4611544565b827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1661253e9092919063ffffffff16565b50565b60075481565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b635f6bc56042106115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f7377617020706572696f64206973206f7665720000000000000000000000000081525060200191505060405180910390fd5b6116343330837f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166125e0909392919063ffffffff16565b61163e3382612446565b611647336126a1565b50565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116e25780601f106116b7576101008083540402835291602001916116e2565b820191906000526020600020905b8154815290600101906020018083116116c557829003601f168201915b5050505050905090565b60006117af6116f9611ab7565b846117aa856040518060600160405280602581526020016133cc6025913960016000611723611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b611abf565b6001905092915050565b60006117cd6117c6611ab7565b8484611cb6565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60085481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118af611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061325d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061337e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132836022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff1615611d39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d25762015180600854014211156120ff5760007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663729e6ec58585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060206040518083038186803b158015611e4857600080fd5b505afa158015611e5c573d6000803e3d6000fd5b505050506040513d6020811015611e7257600080fd5b81019080805190602001909291905050509050600080600160658481611e9457fe5b06161490506000611ecf6064611ec184611eaf57600a611eb2565b60055b876124b890919063ffffffff16565b61271490919063ffffffff16565b90508115612067576007548160065401108015611f365750600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154611f33876110fb565b10155b8015611f88575062015180600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101540142115b1561200c57611f97868261275e565b611fac816006546122b490919063ffffffff16565b6006819055507ff3b6e6f302177583023cbb51089f09b2e858eceac85e03da327e85512e4e20c38682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1612062565b7f9e30f14649963b85665ee4ae2fab8952254f6d32ca9496c96138e1ba7651b1cc8682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b6120f7565b6120718682612925565b612086816007546122b490919063ffffffff16565b60078190555061209f8185612ae990919063ffffffff16565b93507f5bb579930dad0de350ee6683a147de2ac63e78c48bddb552729a2551ba8f36fd8682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b5050506121bb565b6000612128606461211a6019856124b890919063ffffffff16565b61271490919063ffffffff16565b90506121348482612925565b612149816007546122b490919063ffffffff16565b6007819055506121628183612ae990919063ffffffff16565b91507fea66bdccfafbc26e02c618da442452f14a42616c7030944137397652c35cd31b8482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b6121cf600182612ae990919063ffffffff16565b90505b6121dd838383612b33565b6121e6836126a1565b6121ef826126a1565b505050565b60008383111582906122a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561226657808201518184015260208101905061224b565b50505050905090810190601f1680156122935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6123468282612925565b61234f826126a1565b5050565b600560019054906101000a900460ff166123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612419611ab7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b612450828261275e565b612459826126a1565b5050565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808314156124cb5760009050612538565b60008284029050828482816124dc57fe5b0414612533576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132cb6021913960400191505060405180910390fd5b809150505b92915050565b6125db8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612df4565b505050565b61269b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612df4565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905062015180816001015401421115612710576126fe826110fb565b81600001819055504281600101819055505b5050565b600061275683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ee3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61280d60008383612fa9565b612822816002546122b490919063ffffffff16565b600281905550612879816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133386021913960400191505060405180910390fd5b6129b782600083612fa9565b612a228160405180606001604052806022815260200161323b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7981600254612ae990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612b2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133596025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132186023913960400191505060405180910390fd5b612c4a838383612fa9565b612cb5816040518060600160405280602681526020016132a5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d48816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6060612e56826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612fae9092919063ffffffff16565b9050600081511115612ede57808060200190516020811015612e7757600080fd5b8101908080519060200190929190505050612edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133a2602a913960400191505060405180910390fd5b5b505050565b60008083118290612f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f54578082015181840152602081019050612f39565b50505050905090810190601f168015612f815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f9b57fe5b049050809150509392505050565b505050565b6060612fbd8484600085612fc6565b90509392505050565b6060612fd1856131cc565b613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106130935780518252602082019150602081019050602083039250613070565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146130f5576040519150601f19603f3d011682016040523d82523d6000602084013e6130fa565b606091505b5091509150811561310f5780925050506131c4565b6000815111156131225780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561318957808201518184015260208101905061316e565b50505050905090810190601f1680156131b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561320e57506000801b8214155b9250505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206cae2c0a29d98cf5b54d623087f93fb4fb74d26d6c638e8f5cc3d3e43b45d49164736f6c63430007010033000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea00000000000000000000000009a4970e727f5d16dd28c68964afb8e0be9c0f19

Deployed Bytecode

0x6080604052600436106101e75760003560e01c806373452cd711610102578063a457c2d711610095578063d2f131f611610064578063d2f131f614610a67578063d356593414610a92578063dd62ed3e14610abd578063f2fde38b14610b42576101ee565b8063a457c2d714610903578063a9059cbb14610974578063bdd3d825146109e5578063c74c0fac14610a26576101ee565b80638be8ef91116100d15780638be8ef91146107cc5780638da5cb5b146107f757806394b918de1461083857806395d89b4114610873576101ee565b806373452cd7146106ee5780637870bf261461072f57806379cc67901461075a57806386d1a69f146107b5576101ee565b8063395093511161017a5780635c975abb116101495780635c975abb146106045780635ec01e4d1461063157806370a0823114610672578063715018a6146106d7576101ee565b806339509351146104dc57806342966c681461054d57806357b001f91461058857806359d9d38b146105d9576101ee565b806323b872dd116101b657806323b872dd14610386578063313ce5671461041757806334b3081f1461044557806337f9cd5a146104b1576101ee565b806306fdde03146101f3578063095ea7b31461028357806318160ddd146102f4578063201d44111461031f576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610b93565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561024857808201518184015260208101905061022d565b50505050905090810190601f1680156102755780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028f57600080fd5b506102dc600480360360408110156102a657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c35565b60405180821515815260200191505060405180910390f35b34801561030057600080fd5b50610309610c53565b6040518082815260200191505060405180910390f35b34801561032b57600080fd5b5061036e6004803603602081101561034257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c5d565b60405180821515815260200191505060405180910390f35b34801561039257600080fd5b506103ff600480360360608110156103a957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c7d565b60405180821515815260200191505060405180910390f35b34801561042357600080fd5b5061042c610d56565b604051808260ff16815260200191505060405180910390f35b34801561045157600080fd5b506104946004803603602081101561046857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610d6d565b604051808381526020018281526020019250505060405180910390f35b3480156104bd57600080fd5b506104c6610d91565b6040518082815260200191505060405180910390f35b3480156104e857600080fd5b50610535600480360360408110156104ff57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d97565b60405180821515815260200191505060405180910390f35b34801561055957600080fd5b506105866004803603602081101561057057600080fd5b8101908080359060200190929190505050610e4a565b005b34801561059457600080fd5b506105d7600480360360208110156105ab57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e5e565b005b3480156105e557600080fd5b506105ee6110bb565b6040518082815260200191505060405180910390f35b34801561061057600080fd5b506106196110c0565b60405180821515815260200191505060405180910390f35b34801561063d57600080fd5b506106466110d7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561067e57600080fd5b506106c16004803603602081101561069557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110fb565b6040518082815260200191505060405180910390f35b3480156106e357600080fd5b506106ec611143565b005b3480156106fa57600080fd5b506107036112ce565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561073b57600080fd5b506107446112f2565b6040518082815260200191505060405180910390f35b34801561076657600080fd5b506107b36004803603604081101561077d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112f7565b005b3480156107c157600080fd5b506107ca611359565b005b3480156107d857600080fd5b506107e161153e565b6040518082815260200191505060405180910390f35b34801561080357600080fd5b5061080c611544565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561084457600080fd5b506108716004803603602081101561085b57600080fd5b810190808035906020019092919050505061156e565b005b34801561087f57600080fd5b5061088861164a565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156108c85780820151818401526020810190506108ad565b50505050905090810190601f1680156108f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561090f57600080fd5b5061095c6004803603604081101561092657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116ec565b60405180821515815260200191505060405180910390f35b34801561098057600080fd5b506109cd6004803603604081101561099757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506117b9565b60405180821515815260200191505060405180910390f35b3480156109f157600080fd5b506109fa6117d7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a3257600080fd5b50610a3b6117fd565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a7357600080fd5b50610a7c611815565b6040518082815260200191505060405180910390f35b348015610a9e57600080fd5b50610aa761181b565b6040518082815260200191505060405180910390f35b348015610ac957600080fd5b50610b2c60048036036040811015610ae057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611820565b6040518082815260200191505060405180910390f35b348015610b4e57600080fd5b50610b9160048036036020811015610b6557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118a7565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610c2b5780601f10610c0057610100808354040283529160200191610c2b565b820191906000526020600020905b815481529060010190602001808311610c0e57829003601f168201915b5050505050905090565b6000610c49610c42611ab7565b8484611abf565b6001905092915050565b6000600254905090565b60096020528060005260406000206000915054906101000a900460ff1681565b6000610c8a848484611cb6565b610d4b84610c96611ab7565b610d46856040518060600160405280602881526020016132ec60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610cfc611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b611abf565b600190509392505050565b6000600560009054906101000a900460ff16905090565b600b6020528060005260406000206000915090508060000154908060010154905082565b60065481565b6000610e40610da4611ab7565b84610e3b8560016000610db5611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b611abf565b6001905092915050565b610e5b610e55611ab7565b8261233c565b50565b610e66611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f28576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610f30612353565b610f448169098774738bc822200000612446565b610f4f81600161245d565b60004790506000610f6a605a836124b890919063ffffffff16565b9050610f763082612446565b610f8130600161245d565b610fa030737a250d5630b4cf539739df2c5dacb4c659f2488d83611abf565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71983308485876000426040518863ffffffff1660e01b8152600401808773ffffffffffffffffffffffffffffffffffffffff1681526020018681526020018581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200196505050505050506060604051808303818588803b15801561105c57600080fd5b505af1158015611070573d6000803e3d6000fd5b50505050506040513d606081101561108757600080fd5b8101908080519060200190929190805190602001909291908051906020019092919050505050505042600881905550505050565b600581565b6000600560019054906101000a900460ff16905090565b7f00000000000000000000000009a4970e727f5d16dd28c68964afb8e0be9c0f1981565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61114b611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b7f000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea81565b601981565b6000611336826040518060600160405280602481526020016133146024913961132786611322611ab7565b611820565b6121f49092919063ffffffff16565b905061134a83611344611ab7565b83611abf565b611354838361233c565b505050565b611361611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611423576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b60007f000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea73ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114ac57600080fd5b505afa1580156114c0573d6000803e3d6000fd5b505050506040513d60208110156114d657600080fd5b8101908080519060200190929190505050905061153b6114f4611544565b827f000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea73ffffffffffffffffffffffffffffffffffffffff1661253e9092919063ffffffff16565b50565b60075481565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b635f6bc56042106115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f7377617020706572696f64206973206f7665720000000000000000000000000081525060200191505060405180910390fd5b6116343330837f000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea73ffffffffffffffffffffffffffffffffffffffff166125e0909392919063ffffffff16565b61163e3382612446565b611647336126a1565b50565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156116e25780601f106116b7576101008083540402835291602001916116e2565b820191906000526020600020905b8154815290600101906020018083116116c557829003601f168201915b5050505050905090565b60006117af6116f9611ab7565b846117aa856040518060600160405280602581526020016133cc6025913960016000611723611ab7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b611abf565b6001905092915050565b60006117cd6117c6611ab7565b8484611cb6565b6001905092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b60085481565b600a81565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118af611ab7565b73ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611971576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119f7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061325d6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b45576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061337e6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bcb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806132836022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600560019054906101000a900460ff1615611d39576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121d25762015180600854014211156120ff5760007f00000000000000000000000009a4970e727f5d16dd28c68964afb8e0be9c0f1973ffffffffffffffffffffffffffffffffffffffff1663729e6ec58585856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff168152602001828152602001935050505060206040518083038186803b158015611e4857600080fd5b505afa158015611e5c573d6000803e3d6000fd5b505050506040513d6020811015611e7257600080fd5b81019080805190602001909291905050509050600080600160658481611e9457fe5b06161490506000611ecf6064611ec184611eaf57600a611eb2565b60055b876124b890919063ffffffff16565b61271490919063ffffffff16565b90508115612067576007548160065401108015611f365750600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154611f33876110fb565b10155b8015611f88575062015180600b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101540142115b1561200c57611f97868261275e565b611fac816006546122b490919063ffffffff16565b6006819055507ff3b6e6f302177583023cbb51089f09b2e858eceac85e03da327e85512e4e20c38682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1612062565b7f9e30f14649963b85665ee4ae2fab8952254f6d32ca9496c96138e1ba7651b1cc8682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b6120f7565b6120718682612925565b612086816007546122b490919063ffffffff16565b60078190555061209f8185612ae990919063ffffffff16565b93507f5bb579930dad0de350ee6683a147de2ac63e78c48bddb552729a2551ba8f36fd8682604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15b5050506121bb565b6000612128606461211a6019856124b890919063ffffffff16565b61271490919063ffffffff16565b90506121348482612925565b612149816007546122b490919063ffffffff16565b6007819055506121628183612ae990919063ffffffff16565b91507fea66bdccfafbc26e02c618da442452f14a42616c7030944137397652c35cd31b8482604051808373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1505b6121cf600182612ae990919063ffffffff16565b90505b6121dd838383612b33565b6121e6836126a1565b6121ef826126a1565b505050565b60008383111582906122a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561226657808201518184015260208101905061224b565b50505050905090810190601f1680156122935780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6123468282612925565b61234f826126a1565b5050565b600560019054906101000a900460ff166123d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600560016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612419611ab7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b612450828261275e565b612459826126a1565b5050565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000808314156124cb5760009050612538565b60008284029050828482816124dc57fe5b0414612533576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806132cb6021913960400191505060405180910390fd5b809150505b92915050565b6125db8363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612df4565b505050565b61269b846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612df4565b50505050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905062015180816001015401421115612710576126fe826110fb565b81600001819055504281600101819055505b5050565b600061275683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612ee3565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612801576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b61280d60008383612fa9565b612822816002546122b490919063ffffffff16565b600281905550612879816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806133386021913960400191505060405180910390fd5b6129b782600083612fa9565b612a228160405180606001604052806022815260200161323b602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612a7981600254612ae990919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000612b2b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506121f4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bb9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806133596025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806132186023913960400191505060405180910390fd5b612c4a838383612fa9565b612cb5816040518060600160405280602681526020016132a5602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546121f49092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612d48816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546122b490919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6060612e56826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff16612fae9092919063ffffffff16565b9050600081511115612ede57808060200190516020811015612e7757600080fd5b8101908080519060200190929190505050612edd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806133a2602a913960400191505060405180910390fd5b5b505050565b60008083118290612f8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612f54578082015181840152602081019050612f39565b50505050905090810190601f168015612f815780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612f9b57fe5b049050809150509392505050565b505050565b6060612fbd8484600085612fc6565b90509392505050565b6060612fd1856131cc565b613043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106130935780518252602082019150602081019050602083039250613070565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146130f5576040519150601f19603f3d011682016040523d82523d6000602084013e6130fa565b606091505b5091509150811561310f5780925050506131c4565b6000815111156131225780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561318957808201518184015260208101905061316e565b50505050905090810190601f1680156131b65780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f915080821415801561320e57506000801b8214155b9250505091905056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212206cae2c0a29d98cf5b54d623087f93fb4fb74d26d6c638e8f5cc3d3e43b45d49164736f6c63430007010033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea00000000000000000000000009a4970e727f5d16dd28c68964afb8e0be9c0f19

-----Decoded View---------------
Arg [0] : _yinYangAddress (address): 0x010194bA9CA34AC26B097a5F204dfB47B21288Ea
Arg [1] : _randomAddress (address): 0x09A4970e727f5d16dd28c68964aFb8e0BE9C0f19

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000010194ba9ca34ac26b097a5f204dfb47b21288ea
Arg [1] : 00000000000000000000000009a4970e727f5d16dd28c68964afb8e0be9c0f19


Deployed Bytecode Sourcemap

36597:5676:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25202:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27308:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26277:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36987:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27951:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26129:83;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37505:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;36863:35;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28681:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;34438:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;38225:805;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;36730:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;4111:78;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37372:31;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26440:119;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2577:148;;;;;;;;;;;;;:::i;:::-;;37325:38;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36812:42;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;34848:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42065:168;;;;;;;;;;;;;:::i;:::-;;36907:36;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1935:79;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41751:306;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25404:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29402:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26772:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37290:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;37168:113;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36952:26;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36770:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27010:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;2880:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25202:83;25239:13;25272:5;25265:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25202:83;:::o;27308:169::-;27391:4;27408:39;27417:12;:10;:12::i;:::-;27431:7;27440:6;27408:8;:39::i;:::-;27465:4;27458:11;;27308:169;;;;:::o;26277:100::-;26330:7;26357:12;;26350:19;;26277:100;:::o;36987:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;27951:321::-;28057:4;28074:36;28084:6;28092:9;28103:6;28074:9;:36::i;:::-;28121:121;28130:6;28138:12;:10;:12::i;:::-;28152:89;28190:6;28152:89;;;;;;;;;;;;;;;;;:11;:19;28164:6;28152:19;;;;;;;;;;;;;;;:33;28172:12;:10;:12::i;:::-;28152:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;28121:8;:121::i;:::-;28260:4;28253:11;;27951:321;;;;;:::o;26129:83::-;26170:5;26195:9;;;;;;;;;;;26188:16;;26129:83;:::o;37505:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36863:35::-;;;;:::o;28681:218::-;28769:4;28786:83;28795:12;:10;:12::i;:::-;28809:7;28818:50;28857:10;28818:11;:25;28830:12;:10;:12::i;:::-;28818:25;;;;;;;;;;;;;;;:34;28844:7;28818:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;28786:8;:83::i;:::-;28887:4;28880:11;;28681:218;;;;:::o;34438:91::-;34494:27;34500:12;:10;:12::i;:::-;34514:6;34494:5;:27::i;:::-;34438:91;:::o;38225:805::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38305:16:::1;:14;:16::i;:::-;38332:39;38338:15;38355;38332:5;:39::i;:::-;38408:40;38426:15;38443:4;38408:17;:40::i;:::-;38461:20;38484:21;38461:44;;38516:14;38533:20;38550:2;38533:12;:16;;:20;;;;:::i;:::-;38516:37;;38585:28;38599:4;38606:6;38585:5;:28::i;:::-;38624:38;38650:4;38657;38624:17;:38::i;:::-;38673:58;38690:4;37116:42;38724:6;38673:8;:58::i;:::-;37116:42;38742:32;;;38793:12;38840:4;38860:6;38881;38902:12;38937:1;38954:15;38742:238;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39007:15;38993:11;:29;;;;2217:1;;38225:805:::0;:::o;36730:31::-;36760:1;36730:31;:::o;4111:78::-;4150:4;4174:7;;;;;;;;;;;4167:14;;4111:78;:::o;37372:31::-;;;:::o;26440:119::-;26506:7;26533:9;:18;26543:7;26533:18;;;;;;;;;;;;;;;;26526:25;;26440:119;;;:::o;2577:148::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2684:1:::1;2647:40;;2668:6;;;;;;;;;;;2647:40;;;;;;;;;;;;2715:1;2698:6;;:19;;;;;;;;;;;;;;;;;;2577:148::o:0;37325:38::-;;;:::o;36812:42::-;36852:2;36812:42;:::o;34848:295::-;34925:26;34954:84;34991:6;34954:84;;;;;;;;;;;;;;;;;:32;34964:7;34973:12;:10;:12::i;:::-;34954:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;34925:113;;35051:51;35060:7;35069:12;:10;:12::i;:::-;35083:18;35051:8;:51::i;:::-;35113:22;35119:7;35128:6;35113:5;:22::i;:::-;34848:295;;;:::o;42065:168::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42114:14:::1;42131;:24;;;42164:4;42131:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;42114:56;;42181:44;42209:7;:5;:7::i;:::-;42218:6;42181:14;:27;;;;:44;;;;;:::i;:::-;2217:1;42065:168::o:0;36907:36::-;;;;:::o;1935:79::-;1973:7;2000:6;;;;;;;;;;;1993:13;;1935:79;:::o;41751:306::-;41828:10;41810:15;:28;41802:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41907:67;41939:10;41959:4;41966:7;41907:14;:31;;;;:67;;;;;;:::i;:::-;41985:26;41991:10;42003:7;41985:5;:26::i;:::-;42022:27;42038:10;42022:15;:27::i;:::-;41751:306;:::o;25404:87::-;25443:13;25476:7;25469:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25404:87;:::o;29402:269::-;29495:4;29512:129;29521:12;:10;:12::i;:::-;29535:7;29544:96;29583:15;29544:96;;;;;;;;;;;;;;;;;:11;:25;29556:12;:10;:12::i;:::-;29544:25;;;;;;;;;;;;;;;:34;29570:7;29544:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;29512:8;:129::i;:::-;29659:4;29652:11;;29402:269;;;;:::o;26772:175::-;26858:4;26875:42;26885:12;:10;:12::i;:::-;26899:9;26910:6;26875:9;:42::i;:::-;26935:4;26928:11;;26772:175;;;;:::o;37290:26::-;;;;;;;;;;;;;:::o;37168:113::-;37238:42;37168:113;:::o;36952:26::-;;;;:::o;36770:33::-;36801:2;36770:33;:::o;27010:151::-;27099:7;27126:11;:18;27138:5;27126:18;;;;;;;;;;;;;;;:27;27145:7;27126:27;;;;;;;;;;;;;;;;27119:34;;27010:151;;;;:::o;2880:244::-;2157:12;:10;:12::i;:::-;2147:22;;:6;;;;;;;;;;;:22;;;2139:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2989:1:::1;2969:22;;:8;:22;;;;2961:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3079:8;3050:38;;3071:6;;;;;;;;;;;3050:38;;;;;;;;;;;;3108:8;3099:6;;:17;;;;;;;;;;;;;;;;;;2880:244:::0;:::o;577:106::-;630:15;665:10;658:17;;577:106;:::o;32549:346::-;32668:1;32651:19;;:5;:19;;;;32643:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32749:1;32730:21;;:7;:21;;;;32722:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32833:6;32803:11;:18;32815:5;32803:18;;;;;;;;;;;;;;;:27;32822:7;32803:27;;;;;;;;;;;;;;;:36;;;;32871:7;32855:32;;32864:5;32855:32;;;32880:6;32855:32;;;;;;;;;;;;;;;;;;32549:346;;;:::o;39166:1919::-;4429:7;;;;;;;;;;;4428:8;4420:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39305:13:::1;:22;39319:7;39305:22;;;;;;;;;;;;;;;;;;;;;;;;;39300:1649;;39380:8;39366:11;;:22;39348:15;:40;39344:1555;;;39409:9;39421:6;:8;;;39430:7;39439:10;39451:7;39421:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;39409:50;;39478:10;39510:1:::0;39504::::1;39497:3;39493:1;:7;;;;;;39492:13;39491:20;39478:33;;39530:21;39554:40;39590:3;39554:31;39566:5;:18;;36801:2;39566:18;;;36760:1;39566:18;39554:7;:11;;:31;;;;:::i;:::-;:35;;:40;;;;:::i;:::-;39530:64;;39617:5;39613:924;;;39690:21;;39674:13;39651:20;;:36;:60;:138;;;;;39763:9;:18;39773:7;39763:18;;;;;;;;;;;;;;;:26;;;39741:18;39751:7;39741:9;:18::i;:::-;:48;;39651:138;:231;;;;;39874:8;39836:9;:18;39846:7;39836:18;;;;;;;;;;;;;;;:35;;;:46;39818:15;:64;39651:231;39647:585;;;39932:35;39944:7;39953:13;39932:11;:35::i;:::-;40017:39;40042:13;40017:20;;:24;;:39;;;;:::i;:::-;39994:20;:62;;;;40088:27;40092:7;40101:13;40088:27;;;;;;;;;;;;;;;;;;;;;;;;;;39647:585;;;40177:31;40185:7;40194:13;40177:31;;;;;;;;;;;;;;;;;;;;;;;;;;39647:585;39613:924;;;40280:35;40292:7;40301:13;40280:11;:35::i;:::-;40362:40;40388:13;40362:21;;:25;;:40;;;;:::i;:::-;40338:21;:64;;;;40435:26;40447:13;40435:7;:11;;:26;;;;:::i;:::-;40425:36;;40489:28;40494:7;40503:13;40489:28;;;;;;;;;;;;;;;;;;;;;;;;;;39613:924;39344:1555;;;;;;40577:20;40600:35;40631:3;40600:26;36852:2;40600:7;:11;;:26;;;;:::i;:::-;:30;;:35;;;;:::i;:::-;40577:58;;40654:34;40666:7;40675:12;40654:11;:34::i;:::-;40731:39;40757:12;40731:21;;:25;;:39;;;;:::i;:::-;40707:21;:63;;;;40799:25;40811:12;40799:7;:11;;:25;;;;:::i;:::-;40789:35;;40848;40861:7;40870:12;40848:35;;;;;;;;;;;;;;;;;;;;;;;;;;39344:1555;;40923:14;40935:1;40923:7;:11;;:14;;;;:::i;:::-;40913:24;;39300:1649;40959:45;40975:7;40984:10;40996:7;40959:15;:45::i;:::-;41015:24;41031:7;41015:15;:24::i;:::-;41050:27;41066:10;41050:15;:27::i;:::-;39166:1919:::0;;;:::o;9753:192::-;9839:7;9872:1;9867;:6;;9875:12;9859:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9899:9;9915:1;9911;:5;9899:17;;9936:1;9929:8;;;9753:192;;;;;:::o;8850:181::-;8908:7;8928:9;8944:1;8940;:5;8928:17;;8969:1;8964;:6;;8956:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9022:1;9015:8;;;8850:181;;;;:::o;41255:154::-;41339:27;41351:7;41360:5;41339:11;:27::i;:::-;41377:24;41393:7;41377:15;:24::i;:::-;41255:154;;:::o;5160:120::-;4705:7;;;;;;;;;;;4697:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5229:5:::1;5219:7;;:15;;;;;;;;;;;;;;;;;;5250:22;5259:12;:10;:12::i;:::-;5250:22;;;;;;;;;;;;;;;;;;;;5160:120::o:0;41093:154::-;41177:27;41189:7;41198:5;41177:11;:27::i;:::-;41215:24;41231:7;41215:15;:24::i;:::-;41093:154;;:::o;39038:120::-;39143:7;39117:13;:23;39131:8;39117:23;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;39038:120;;:::o;10204:471::-;10262:7;10512:1;10507;:6;10503:47;;;10537:1;10530:8;;;;10503:47;10562:9;10578:1;10574;:5;10562:17;;10607:1;10602;10598;:5;;;;;;:10;10590:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10666:1;10659:8;;;10204:471;;;;;:::o;20038:177::-;20121:86;20141:5;20171:23;;;20196:2;20200:5;20148:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20121:19;:86::i;:::-;20038:177;;;:::o;20223:205::-;20324:96;20344:5;20374:27;;;20403:4;20409:2;20413:5;20351:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20324:19;:96::i;:::-;20223:205;;;;:::o;41417:311::-;41480:25;41508:9;:19;41518:8;41508:19;;;;;;;;;;;;;;;41480:47;;41588:8;41560;:25;;;:36;41542:15;:54;41538:183;;;41632:19;41642:8;41632:9;:19::i;:::-;41613:8;:16;;:38;;;;41694:15;41666:8;:25;;:43;;;;41538:183;41417:311;;:::o;11151:132::-;11209:7;11236:39;11240:1;11243;11236:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;11229:46;;11151:132;;;;:::o;30981:378::-;31084:1;31065:21;;:7;:21;;;;31057:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31135:49;31164:1;31168:7;31177:6;31135:20;:49::i;:::-;31212:24;31229:6;31212:12;;:16;;:24;;;;:::i;:::-;31197:12;:39;;;;31268:30;31291:6;31268:9;:18;31278:7;31268:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;31247:9;:18;31257:7;31247:18;;;;;;;;;;;;;;;:51;;;;31335:7;31314:37;;31331:1;31314:37;;;31344:6;31314:37;;;;;;;;;;;;;;;;;;30981:378;;:::o;31691:418::-;31794:1;31775:21;;:7;:21;;;;31767:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31847:49;31868:7;31885:1;31889:6;31847:20;:49::i;:::-;31930:68;31953:6;31930:68;;;;;;;;;;;;;;;;;:9;:18;31940:7;31930:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;31909:9;:18;31919:7;31909:18;;;;;;;;;;;;;;;:89;;;;32024:24;32041:6;32024:12;;:16;;:24;;;;:::i;:::-;32009:12;:39;;;;32090:1;32064:37;;32073:7;32064:37;;;32094:6;32064:37;;;;;;;;;;;;;;;;;;31691:418;;:::o;9314:136::-;9372:7;9399:43;9403:1;9406;9399:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;9392:50;;9314:136;;;;:::o;30161:539::-;30285:1;30267:20;;:6;:20;;;;30259:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30369:1;30348:23;;:9;:23;;;;30340:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30424:47;30445:6;30453:9;30464:6;30424:20;:47::i;:::-;30504:71;30526:6;30504:71;;;;;;;;;;;;;;;;;:9;:17;30514:6;30504:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;30484:9;:17;30494:6;30484:17;;;;;;;;;;;;;;;:91;;;;30609:32;30634:6;30609:9;:20;30619:9;30609:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;30586:9;:20;30596:9;30586:20;;;;;;;;;;;;;;;:55;;;;30674:9;30657:35;;30666:6;30657:35;;;30685:6;30657:35;;;;;;;;;;;;;;;;;;30161:539;;;:::o;22343:761::-;22767:23;22793:69;22821:4;22793:69;;;;;;;;;;;;;;;;;22801:5;22793:27;;;;:69;;;;;:::i;:::-;22767:95;;22897:1;22877:10;:17;:21;22873:224;;;23019:10;23008:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23000:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22873:224;22343:761;;;:::o;11779:278::-;11865:7;11897:1;11893;:5;11900:12;11885:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11924:9;11940:1;11936;:5;;;;;;11924:17;;12048:1;12041:8;;;11779:278;;;;;:::o;33920:92::-;;;;:::o;17111:196::-;17214:12;17246:53;17269:6;17277:4;17283:1;17286:12;17246:22;:53::i;:::-;17239:60;;17111:196;;;;;:::o;18488:979::-;18618:12;18651:18;18662:6;18651:10;:18::i;:::-;18643:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18777:12;18791:23;18818:6;:11;;18838:8;18849:4;18818:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18776:78;;;;18869:7;18865:595;;;18900:10;18893:17;;;;;;18865:595;19034:1;19014:10;:17;:21;19010:439;;;19277:10;19271:17;19338:15;19325:10;19321:2;19317:19;19310:44;19225:148;19420:12;19413:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18488:979;;;;;;;:::o;13996:619::-;14056:4;14318:16;14345:19;14367:66;14345:88;;;;14536:7;14524:20;14512:32;;14576:11;14564:8;:23;;:42;;;;;14603:3;14591:15;;:8;:15;;14564:42;14556:51;;;;13996:619;;;:::o

Swarm Source

ipfs://6cae2c0a29d98cf5b54d623087f93fb4fb74d26d6c638e8f5cc3d3e43b45d491
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.