ETH Price: $3,163.00 (+2.99%)
Gas: 1 Gwei

Token

DarkPool (pDARK)
 

Overview

Max Total Supply

186,367.689640387539554495 pDARK

Holders

180

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000004605 pDARK

Value
$0.00
0xb869703528644e261e4a2f567ac98121c76af74b
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:
DarkPool

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-11-14
*/

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

/**
 *Submitted for verification at Etherscan.io on 2020-11-10
*/

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

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

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

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/math/Math.sol

pragma solidity ^0.6.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + ((a % 2 + b % 2) / 2);
    }
}

pragma solidity ^0.6.2;

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/math/SafeMath.sol

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: node_modules\@openzeppelin\contracts\GSN\Context.sol

pragma solidity ^0.6.0;

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

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

// File: @openzeppelin/contracts/ownership/Ownable.sol

pragma solidity ^0.6.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.6.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

    mapping (address => mapping (address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;
        _decimals = 18;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.6.0;

library SafeERC20 {
    using SafeMath for uint256;
    using Address for address;

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

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

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

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

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

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

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

// File: staking-audit.sol

pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;

contract DarkPool is ERC20("DarkPool", "pDARK"), Ownable {
    using SafeMath for uint256;
    using SafeERC20 for IERC20;

// ------------ Multi darklisted_ Tokens rewarding ---------------------------------------

    IERC20 public DARK = IERC20(0x3108ccFd96816F9E663baA0E8c5951D229E8C6da);

    uint256 public darklisted_duration = 50 days;
    uint256 public darklisted_period_finish = 0;
    uint256 public darklisted_last_update_time;
    uint256 public darklisted_newreward;
    uint256 public darklisted_reward_handout;

    address[] public darklisted_token;
    address[] public darklisted_reward_account_list;
    
    mapping(address => bool) public darklisted_staker_accepted;

    mapping(address => uint256) public darklisted_reward_per_token_stored;
    mapping(address => uint256) public darklisted_reward_rate;

    mapping(address => mapping (address => uint)) public darklisted_each_account_rewards;
    mapping(address => mapping (address => uint)) public darklisted_user_reward_per_token_paid;

    event RewardAdded(uint256 darklisted_newreward);
    event Staked(address indexed user, uint256 amount);
    event Withdrawn(address indexed user, uint256 amount);
    event RewardPaid(address indexed user, uint256 reward);

// ------------ Listing Tokens ---------------------------------------

    address public DARK_listed = 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da;
    address public sDARK_listed = 0x26c7D50B9f372e1FA9cA078CC054298f36D68B17;
    address public darkDAI_listed = 0x8a10eEf5A822879D5682A71F52bC8969eEE8D77a;
    address public MATIC_listed = 0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0;
    address public Storj_listed = 0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC;
    address public ENJ_listed = 0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c;


    constructor() public {
        darklisted_token.push(0x3108ccFd96816F9E663baA0E8c5951D229E8C6da);
        darklisted_token.push(0x26c7D50B9f372e1FA9cA078CC054298f36D68B17);
        darklisted_token.push(0x8a10eEf5A822879D5682A71F52bC8969eEE8D77a);
        darklisted_token.push(0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0);
        darklisted_token.push(0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC);
        darklisted_token.push(0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c);
    }

    function approve_darkListing(address _darklisted_token) public onlyOwner {
        require(_darklisted_token != address(0), "Cannot be adddress(0)");

        darklisted_token.push(_darklisted_token);
    }

    function revoke_darkListing() public onlyOwner {

        darklisted_token.pop();
    }

// ------------ Pool Duration ---------------------------------------

    function set_duration(uint256 _darklisted_duration) external onlyOwner {
        require(_darklisted_duration != 0, "Cannot be 0 days");

        darklisted_duration = _darklisted_duration;
    }

    function set_period_finish() external onlyOwner {

        darklisted_period_finish = block.timestamp.add(darklisted_duration);
    }

// ------------ Modifier and Modifier Function ---------------------------------------

    modifier darklisted_updateReward(address account, address token) {
        darklisted_reward_per_token_stored[token] = darklisted_rewardPerToken(token);
        darklisted_last_update_time = darklisted_lastTimeRewardApplicable();
        if (account != address(0)) {
            darklisted_each_account_rewards[account][token] = darklisted_earned(account, token);
            darklisted_user_reward_per_token_paid[account][token] = darklisted_reward_per_token_stored[token];
        }
        _;
    }

    function darklisted_updateReward_function(address account, address token) internal {
        darklisted_reward_per_token_stored[token] = darklisted_rewardPerToken(token);
        darklisted_last_update_time = darklisted_lastTimeRewardApplicable();
        if (account != address(0)) {
            darklisted_each_account_rewards[account][token] = darklisted_earned(account, token);
            darklisted_user_reward_per_token_paid[account][token] = darklisted_reward_per_token_stored[token];
        }
    }

// ------------ darklisted_ Rewards Logics--------------------------------

    function darklisted_lastTimeRewardApplicable() public view returns(uint256) {
        return Math.min(block.timestamp, darklisted_period_finish);
    }

    function darklisted_rewardPerToken(address token) public view returns(uint256) {

        if (totalSupply() == 0) {
            return darklisted_reward_per_token_stored[token];
        }

        return darklisted_reward_per_token_stored[token].add(
        darklisted_lastTimeRewardApplicable().sub(darklisted_last_update_time).mul(darklisted_reward_rate[token]).mul(1e18).div(totalSupply())
        );
            
    }
    

    function darklisted_earned(address account, address token) public view returns(uint256) {
        return balanceOf(account).mul(
        darklisted_rewardPerToken(token).sub(darklisted_user_reward_per_token_paid[account][token])
        ).div(1e18).add(darklisted_each_account_rewards[account][token]);
    }

    function stake(uint256 amount) public darklisted_updateReward(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
        require(amount > 1e18, "At least 1 DARK");

        if (balanceOf(msg.sender) == 0 && !darklisted_staker_accepted[msg.sender]) {
            darklisted_staker_accepted[msg.sender] = true;
            darklisted_reward_account_list.push(msg.sender);
        }

        _mint(msg.sender, amount);
        DARK.safeTransferFrom(msg.sender, address(this), amount);
        emit Staked(msg.sender, amount);
    }

    function withdraw(uint256 _share) public darklisted_updateReward(msg.sender, 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
        require(_share > 0, "Cannot withdraw 0");
        uint amount_ = balanceOf(msg.sender).sub(_share);
        if (amount_ == 0) {
            darklisted_staker_accepted[msg.sender] = false;
            uint256 index = 0;
            while (darklisted_reward_account_list[index] != msg.sender) {
                index++;
            }
            darklisted_reward_account_list[index] = darklisted_reward_account_list[darklisted_reward_account_list.length.sub(1)];
            darklisted_reward_account_list.pop();
        }

        _burn(msg.sender, _share);
        DARK.safeTransfer(msg.sender, _share);
        emit Withdrawn(msg.sender, _share);
    }

    function exit() public {
        withdraw(balanceOf(msg.sender));
        getReward();
    }

    function getReward() public {
        getReward_For_All(msg.sender, DARK_listed);
    }

    function darklisted_notifyRewardAmount() external {

        for(uint d = 0; d< darklisted_token.length; d++){
            darklisted_updateReward_function(address(0), darklisted_token[d]);
            if (darklisted_token[d] == 0x3108ccFd96816F9E663baA0E8c5951D229E8C6da) {
                darklisted_newreward = DARK.balanceOf(address(this)).sub(totalSupply());
            } else {
                darklisted_newreward = IERC20(darklisted_token[d]).balanceOf(address(this));
            }
            if (block.timestamp >= darklisted_period_finish) {
                darklisted_reward_rate[darklisted_token[d]] = darklisted_newreward.div(darklisted_duration);
            } else {
                uint256 remaining = darklisted_period_finish.sub(block.timestamp);
                uint256 leftover = remaining.mul(darklisted_reward_rate[darklisted_token[d]]);
                darklisted_reward_rate[darklisted_token[d]] = darklisted_newreward.add(leftover).div(darklisted_duration);
            }
            darklisted_last_update_time = block.timestamp;
            emit RewardAdded(darklisted_newreward);
        }
    }
    
    function getReward_For_All(address account, address token) public darklisted_updateReward(account, token) {

        darklisted_reward_handout = darklisted_earned(account, token);
        if (darklisted_reward_handout > 0) {
            darklisted_each_account_rewards[account][token] = 0;
            IERC20(token).safeTransfer(account, darklisted_reward_handout);
            emit RewardPaid(account, darklisted_reward_handout);
        }
    }

    function darklisted_getReward_For_DARK() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[0]);
        }
    }

    function darklisted_getReward_For_sDARK() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[1]);
        }
    }

    function darklisted_getReward_For_darkDAI() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[2]);
        }
    }

    function darklisted_getReward_For_darkMATIC() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[3]);
        }
    }

    function darklisted_getReward_For_darkStorj() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[4]);
        }
    }

    function darklisted_getReward_For_darkEnj() public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[5]);
        }
    }

    function darklisted_getReward_For_darkfuturefuturetoken(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list.length; i++){
            getReward_For_All(darklisted_reward_account_list[i], darklisted_token[index]);
        }
    }

//--------------- 100 Addresses a list -----------------

    mapping(uint => address[]) public darklisted_reward_account_list_indexed;

    function sort_lists() public onlyOwner {
 
        if (darklisted_reward_account_list.length >= 100) {
            
             for(uint i = 0; i< darklisted_reward_account_list.length.div(100).add(1); i++) {

                 if (i == darklisted_reward_account_list.length.div(100)) {
                     
                     for(uint j = 0; j< darklisted_reward_account_list.length.sub(i.mul(100)); j++){
                         
                         darklisted_reward_account_list_indexed[i].push(darklisted_reward_account_list[i.mul(100).add(j)]);
                     }
                 } else {
                     
                     for(uint j = 0; j< 100; j++){
                         
                         darklisted_reward_account_list_indexed[i].push(darklisted_reward_account_list[i.mul(100).add(j)]);
                     }
                    
                 }
             }
        } else {
            darklisted_reward_account_list_indexed[0] = darklisted_reward_account_list;
        }
    }

    function darklisted_getReward_For_DARK_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[0]);
        }
    }

    function darklisted_getReward_For_sDARK_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[1]);
        }
    }

    function darklisted_getReward_For_darkDAI_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[2]);
        }
    }

    function darklisted_getReward_For_darkMATIC_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[3]);
        }
    }

    function darklisted_getReward_For_darkStorj_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[4]);
        }
    }

    function darklisted_getReward_For_darkEnj_list(uint index) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[5]);
        }
    }

    function darklisted_getReward_For_darkfuturetoken_list(uint index, uint indexx) public {
        for(uint i = 0; i< darklisted_reward_account_list_indexed[index].length; i++){
            getReward_For_All(darklisted_reward_account_list_indexed[index][i], darklisted_token[indexx]);
        }
    }

    function reward_account_list_length() public view returns (uint) {
        return (darklisted_reward_account_list.length);
    }

    function reward_account_list_data() public view returns (address[] memory) {
        return (darklisted_reward_account_list);
    }

    function reward_account_list_indexed_data(uint index) public view returns (address[] memory) {
        return (darklisted_reward_account_list_indexed[index]);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"darklisted_newreward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DARK","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DARK_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ENJ_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MATIC_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Storj_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_darklisted_token","type":"address"}],"name":"approve_darkListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darkDAI_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"darklisted_each_account_rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"darklisted_earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_DARK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_DARK_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_darkDAI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_darkDAI_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_darkEnj","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_darkEnj_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_darkMATIC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_darkMATIC_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_darkStorj","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_darkStorj_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_darkfuturefuturetoken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"},{"internalType":"uint256","name":"indexx","type":"uint256"}],"name":"darklisted_getReward_For_darkfuturetoken_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_getReward_For_sDARK","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"darklisted_getReward_For_sDARK_list","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_last_update_time","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_newreward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_notifyRewardAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"darklisted_period_finish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"darklisted_rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"darklisted_reward_account_list","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"darklisted_reward_account_list_indexed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"darklisted_reward_handout","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_reward_per_token_stored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_reward_rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"darklisted_staker_accepted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"darklisted_token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"darklisted_user_reward_per_token_paid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"token","type":"address"}],"name":"getReward_For_All","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revoke_darkListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reward_account_list_data","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"reward_account_list_indexed_data","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reward_account_list_length","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sDARK_listed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_darklisted_duration","type":"uint256"}],"name":"set_duration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"set_period_finish","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sort_lists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","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":[{"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":[{"internalType":"uint256","name":"_share","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600680546001600160a01b0319908116733108ccfd96816f9e663baa0e8c5951d229e8c6da9081179092556241eb0060075560006008556013805482169092179091556014805482167326c7d50b9f372e1fa9ca078cc054298f36d68b17179055601580548216738a10eef5a822879d5682a71f52bc8969eee8d77a179055601680548216737d1afa7b718fb893db30a3abc0cfc608aacfebb017905560178054821673b64ef51c888972c908cfacf59b47c1afbc0ab8ac1790556018805490911673f629cbd94d3791c9250152bd8dfbdf380e2a3b9c179055348015620000eb57600080fd5b50604080518082018252600881526711185c9ad41bdbdb60c21b602080830191825283518085019094526005845264704441524b60d81b9084015281519192916200013991600391620002e0565b5080516200014f906004906020840190620002e0565b50506005805460ff191660121790555060006200016b620002dc565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001818101835560008390527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c791820180546001600160a01b0319908116733108ccfd96816f9e663baa0e8c5951d229e8c6da17909155835480830185558301805482167326c7d50b9f372e1fa9ca078cc054298f36d68b1717905583548083018555830180548216738a10eef5a822879d5682a71f52bc8969eee8d77a17905583548083018555830180548216737d1afa7b718fb893db30a3abc0cfc608aacfebb01790558354808301855583018054821673b64ef51c888972c908cfacf59b47c1afbc0ab8ac179055835491820190935501805490911673f629cbd94d3791c9250152bd8dfbdf380e2a3b9c1790556200037c565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200032357805160ff191683800117855562000353565b8280016001018555821562000353579182015b828111156200035357825182559160200191906001019062000336565b506200036192915062000365565b5090565b5b8082111562000361576000815560010162000366565b612dba806200038c6000396000f3fe608060405234801561001057600080fd5b50600436106103da5760003560e01c80636a3e42b81161020a578063a9059cbb11610125578063d48e180d116100b8578063dd62ed3e11610087578063dd62ed3e14610762578063e8e42d2014610775578063e9fad8ee1461077d578063eae3821614610785578063f2fde38b1461078d576103da565b8063d48e180d1461072c578063d5a8fb2d1461073f578063d924b72614610752578063db49407a1461075a576103da565b8063bd0abc0f116100f4578063bd0abc0f146106f6578063bfe76676146106fe578063c982b43f14610711578063cdb8625514610719576103da565b8063a9059cbb146106cb578063b2645c3b146106de578063b3c6cc88146106e6578063b6c3251a146106ee576103da565b8063873c8c011161019d5780639b715db71161016c5780639b715db71461068a578063a457c2d71461069d578063a5b211e3146106b0578063a694fc3a146106b8576103da565b8063873c8c011461065f5780638da5cb5b146106725780639331d80a1461067a57806395d89b4114610682576103da565b8063715018a6116101d9578063715018a6146106345780637d27d5401461063c578063801680351461064f57806380e52bd214610657576103da565b80636a3e42b8146105f35780636b3383d7146106065780636dfbabd41461060e57806370a0823114610621576103da565b8063375535c6116102fa5780634abee1151161028d57806366e997221161025c57806366e99722146105b257806367d9e8bc146105c55780636800410b146105cd5780636a2acac1146105e0576103da565b80634abee1151461057c5780634edf5b951461058457806350b73db1146105975780636369045c146105aa576103da565b80633b7234fc116102c95780633b7234fc146105515780633d18b9121461056457806344b420f11461056c57806348d9588f14610574576103da565b8063375535c61461050e578063389bffec1461051657806338b655861461052b578063395093511461053e576103da565b806318160ddd1161037257806323b872dd1161034157806323b872dd146104c05780632e1a7d4d146104d3578063313ce567146104e657806336ac49e7146104fb576103da565b806318160ddd146104955780631b7ee0011461049d5780631d92a881146104a557806323327ba9146104b8576103da565b80630a5b9361116103ae5780630a5b9361146104525780630fcded261461045a57806313ddbea01461046d5780631615e11d14610480576103da565b8062dd495e146103df57806306fdde0314610408578063095ea7b31461041d5780630a4cf0611461043d575b600080fd5b6103f26103ed3660046126ce565b6107a0565b6040516103ff9190612c97565b60405180910390f35b6104106107b2565b6040516103ff91906128bd565b61043061042b36600461275d565b610848565b6040516103ff91906128b2565b61045061044b3660046127a7565b610866565b005b6103f26108eb565b6104506104683660046127a7565b6108f1565b61045061047b3660046127a7565b610954565b6104886109bb565b6040516103ff9190612814565b6103f26109ca565b6104506109d0565b6103f26104b33660046126e9565b610a1f565b6103f2610a3c565b6104306104ce36600461271d565b610a4f565b6104506104e13660046127a7565b610ad6565b6104ee610d16565b6040516103ff9190612ca0565b6104506105093660046127a7565b610d1f565b6103f2610d6a565b61051e610d70565b6040516103ff9190612865565b6103f26105393660046126e9565b610dd1565b61043061054c36600461275d565b610e54565b61045061055f3660046127a7565b610ea2565b610450610ee2565b6103f2610efb565b6103f2610f01565b610450610f07565b6104506105923660046127a7565b610f70565b6104886105a53660046127d7565b610fcc565b610450611001565b6103f26105c03660046126ce565b61104d565b61045061105f565b6104506105db3660046127a7565b611344565b6104506105ee3660046126e9565b6113ab565b6103f26106013660046126e9565b6114ca565b6103f26114e7565b61048861061c3660046127a7565b6114ed565b6103f261062f3660046126ce565b611514565b610450611533565b6103f261064a3660046126ce565b6115bd565b61045061165a565b61045061167f565b61048861066d3660046127a7565b611848565b610488611855565b610488611869565b610410611878565b6104506106983660046127d7565b6118d9565b6104306106ab36600461275d565b61191e565b610488611986565b6104506106c63660046127a7565b611995565b6104306106d936600461275d565b611b52565b610450611b66565b610488611b8b565b610488611b9a565b610450611ba9565b61051e61070c3660046127a7565b611bce565b610488611c3a565b6104306107273660046126ce565b611c49565b61045061073a3660046127a7565b611c5e565b61045061074d3660046126ce565b611c9e565b610450611d50565b610488611d9d565b6103f26107703660046126e9565b611dac565b6103f2611dd7565b610450611ddd565b610450611df1565b61045061079b3660046126ce565b611e16565b60106020526000908152604090205481565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085c610855611edd565b8484611ee1565b5060015b92915050565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546108df91908390811061089e57fe5b600091825260209091200154600c80546001600160a01b039092169160019081106108c557fe5b6000918252602090912001546001600160a01b03166113ab565b600101610869565b5050565b60075481565b60005b6000828152601960205260409020548110156108e7576000828152601960205260409020805461094c91908390811061092957fe5b6000918252602082200154600c80546001600160a01b039092169290916108c557fe5b6001016108f4565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546109b391908390811061098c57fe5b600091825260209091200154600c80546001600160a01b039092169160059081106108c557fe5b600101610957565b6006546001600160a01b031681565b60025490565b60005b600d54811015610a1c57610a14600d82815481106109ed57fe5b600091825260209091200154600c80546001600160a01b039092169160039081106108c557fe5b6001016109d3565b50565b601160209081526000928352604080842090915290825290205481565b6000610a4a42600854611f95565b905090565b6000610a5c848484611fab565b610acc84610a68611edd565b610ac785604051806060016040528060288152602001612d38602891396001600160a01b038a16600090815260016020526040812090610aa6611edd565b6001600160a01b0316815260208101919091526040016000205491906120c0565b611ee1565b5060019392505050565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610af5816115bd565b6001600160a01b0382166000908152600f6020526040902055610b16610a3c565b6009556001600160a01b03821615610b7c57610b328282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b60008311610ba55760405162461bcd60e51b8152600401610b9c90612a4a565b60405180910390fd5b6000610bba84610bb433611514565b906120ec565b905080610cae57336000908152600e60205260408120805460ff191690555b336001600160a01b0316600d8281548110610bf057fe5b6000918252602090912001546001600160a01b031614610c1257600101610bd9565b600d8054610c219060016120ec565b81548110610c2b57fe5b600091825260209091200154600d80546001600160a01b039092169183908110610c5157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600d805480610c8a57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b610cb8338561212e565b600654610ccf906001600160a01b03163386612210565b336001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d585604051610d089190612c97565b60405180910390a250505050565b60055460ff1690565b60005b600d548110156108e757610d62600d8281548110610d3c57fe5b600091825260209091200154600c80546001600160a01b0390921691859081106108c557fe5b600101610d22565b60095481565b6060600d80548060200260200160405190810160405280929190818152602001828054801561083e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610daa575050505050905090565b6001600160a01b038083166000818152601160209081526040808320948616808452948252808320549383526012825280832094835293905291822054610e4d9190610e4790670de0b6b3a764000090610e4190610e3290610bb4896115bd565b610e3b89611514565b90612266565b906122a0565b906122e2565b9392505050565b600061085c610e61611edd565b84610ac78560016000610e72611edd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122e2565b60005b6000828152601960205260409020548110156108e75760008281526019602052604090208054610eda9190839081106109ed57fe5b600101610ea5565b601354610ef99033906001600160a01b03166113ab565b565b600b5481565b600a5481565b610f0f611edd565b60055461010090046001600160a01b03908116911614610f415760405162461bcd60e51b8152600401610b9c90612ab6565b600c805480610f4c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055565b610f78611edd565b60055461010090046001600160a01b03908116911614610faa5760405162461bcd60e51b8152600401610b9c90612ab6565b80610fc75760405162461bcd60e51b8152600401610b9c90612aeb565b600755565b60196020528160005260406000208181548110610fe557fe5b6000918252602090912001546001600160a01b03169150829050565b60005b600d54811015610a1c57611045600d828154811061101e57fe5b600091825260209091200154600c80546001600160a01b039092169160049081106108c557fe5b600101611004565b600f6020526000908152604090205481565b60005b600c54811015610a1c576110986000600c838154811061107e57fe5b6000918252602090912001546001600160a01b0316612307565b600c81815481106110a557fe5b6000918252602090912001546001600160a01b0316733108ccfd96816f9e663baa0e8c5951d229e8c6da1415611168576111606110e06109ca565b6006546040516370a0823160e01b81526001600160a01b03909116906370a0823190611110903090600401612814565b60206040518083038186803b15801561112857600080fd5b505afa15801561113c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb491906127bf565b600a55611202565b600c818154811061117557fe5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116906370a08231906111ae903090600401612814565b60206040518083038186803b1580156111c657600080fd5b505afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe91906127bf565b600a555b600854421061125557600754600a5461121a916122a0565b60106000600c848154811061122b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020556112ff565b60085460009061126590426120ec565b905060006112a960106000600c868154811061127d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612266565b90506112c6600754610e4183600a546122e290919063ffffffff16565b60106000600c86815481106112d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205550505b42600955600a546040517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9161133491612c97565b60405180910390a1600101611062565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546113a391908390811061137c57fe5b600091825260209091200154600c80546001600160a01b039092169160029081106108c557fe5b600101611347565b81816113b6816115bd565b6001600160a01b0382166000908152600f60205260409020556113d7610a3c565b6009556001600160a01b0382161561143d576113f38282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b6114478484610dd1565b600b819055156114c4576001600160a01b03808516600090815260116020908152604080832093871680845293909152812055600b5461148991908690612210565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486600b54604051610d089190612c97565b50505050565b601260209081526000928352604080842090915290825290205481565b60085481565b600d81815481106114fa57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b61153b611edd565b60055461010090046001600160a01b0390811691161461156d5760405162461bcd60e51b8152600401610b9c90612ab6565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006115c76109ca565b6115ea57506001600160a01b0381166000908152600f602052604090205461152e565b61086061163b6115f86109ca565b610e41670de0b6b3a7640000610e3b60106000896001600160a01b03166001600160a01b0316815260200190815260200160002054610e3b600954610bb4610a3c565b6001600160a01b0384166000908152600f6020526040902054906122e2565b60005b600d54811015610a1c57611677600d828154811061092957fe5b60010161165d565b611687611edd565b60055461010090046001600160a01b039081169116146116b95760405162461bcd60e51b8152600401610b9c90612ab6565b600d546064116118105760005b600d546116db90600190610e479060646122a0565b81101561180a57600d546116f09060646122a0565b8114156117895760005b611711611708836064612266565b600d54906120ec565b811015611783576000828152601960205260409020600d61173783610e47866064612266565b8154811061174157fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b03909216919091179055016116fa565b50611802565b60005b6064811015611800576000828152601960205260409020600d6117b483610e47866064612266565b815481106117be57fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b039092169190911790550161178c565b505b6001016116c6565b50610ef9565b600080526019602052600d8054610a1c917fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b291612648565b600c81815481106114fa57fe5b60055461010090046001600160a01b031690565b6017546001600160a01b031681565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561083e5780601f106108135761010080835404028352916020019161083e565b60005b6000838152601960205260409020548110156119195760008381526019602052604090208054611911919083908110610d3c57fe5b6001016118dc565b505050565b600061085c61192b611edd565b84610ac785604051806060016040528060258152602001612d606025913960016000611955611edd565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906120c0565b6016546001600160a01b031681565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da6119b4816115bd565b6001600160a01b0382166000908152600f60205260409020556119d5610a3c565b6009556001600160a01b03821615611a3b576119f18282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b670de0b6b3a76400008311611a625760405162461bcd60e51b8152600401610b9c906129bb565b611a6b33611514565b158015611a885750336000908152600e602052604090205460ff16155b15611aea57336000818152600e60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b03191690911790555b611af43384612399565b600654611b0c906001600160a01b031633308661244d565b336001600160a01b03167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d84604051611b459190612c97565b60405180910390a2505050565b600061085c611b5f611edd565b8484611fab565b60005b600d54811015610a1c57611b83600d828154811061089e57fe5b600101611b69565b6014546001600160a01b031681565b6018546001600160a01b031681565b60005b600d54811015610a1c57611bc6600d828154811061137c57fe5b600101611bac565b600081815260196020908152604091829020805483518184028101840190945280845260609392830182828015611c2e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c10575b50505050509050919050565b6015546001600160a01b031681565b600e6020526000908152604090205460ff1681565b60005b6000828152601960205260409020548110156108e75760008281526019602052604090208054611c9691908390811061101e57fe5b600101611c61565b611ca6611edd565b60055461010090046001600160a01b03908116911614611cd85760405162461bcd60e51b8152600401610b9c90612ab6565b6001600160a01b038116611cfe5760405162461bcd60e51b8152600401610b9c90612a1b565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b611d58611edd565b60055461010090046001600160a01b03908116911614611d8a5760405162461bcd60e51b8152600401610b9c90612ab6565b600754611d989042906122e2565b600855565b6013546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600d5490565b611de96104e133611514565b610ef9610ee2565b60005b600d54811015610a1c57611e0e600d828154811061098c57fe5b600101611df4565b611e1e611edd565b60055461010090046001600160a01b03908116911614611e505760405162461bcd60e51b8152600401610b9c90612ab6565b6001600160a01b038116611e765760405162461bcd60e51b8152600401610b9c90612933565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316611f075760405162461bcd60e51b8152600401610b9c90612b9b565b6001600160a01b038216611f2d5760405162461bcd60e51b8152600401610b9c90612979565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611f88908590612c97565b60405180910390a3505050565b6000818310611fa45781610e4d565b5090919050565b6001600160a01b038316611fd15760405162461bcd60e51b8152600401610b9c90612b56565b6001600160a01b038216611ff75760405162461bcd60e51b8152600401610b9c906128f0565b612002838383611919565b61203f81604051806060016040528060268152602001612d12602691396001600160a01b03861660009081526020819052604090205491906120c0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461206e90826122e2565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f88908590612c97565b600081848411156120e45760405162461bcd60e51b8152600401610b9c91906128bd565b505050900390565b6000610e4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120c0565b6001600160a01b0382166121545760405162461bcd60e51b8152600401610b9c90612b15565b61216082600083611919565b61219d81604051806060016040528060228152602001612cf0602291396001600160a01b03851660009081526020819052604090205491906120c0565b6001600160a01b0383166000908152602081905260409020556002546121c390826120ec565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612204908590612c97565b60405180910390a35050565b6119198363a9059cbb60e01b848460405160240161222f92919061284c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261246e565b60008261227557506000610860565b8282028284828161228257fe5b0414610e4d5760405162461bcd60e51b8152600401610b9c90612a75565b6000610e4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124fd565b600082820183811015610e4d5760405162461bcd60e51b8152600401610b9c906129e4565b612310816115bd565b6001600160a01b0382166000908152600f6020526040902055612331610a3c565b6009556001600160a01b038216156108e75761234d8282610dd1565b6001600160a01b0392831660008181526011602090815260408083209590961680835294815285822093909355600f835284812054918152601283528481209381529290915291902055565b6001600160a01b0382166123bf5760405162461bcd60e51b8152600401610b9c90612c60565b6123cb60008383611919565b6002546123d890826122e2565b6002556001600160a01b0382166000908152602081905260409020546123fe90826122e2565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612204908590612c97565b6114c4846323b872dd60e01b85858560405160240161222f93929190612828565b60606124c3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125349092919063ffffffff16565b80519091501561191957808060200190518101906124e19190612787565b6119195760405162461bcd60e51b8152600401610b9c90612c16565b6000818361251e5760405162461bcd60e51b8152600401610b9c91906128bd565b50600083858161252a57fe5b0495945050505050565b6060612543848460008561254b565b949350505050565b60606125568561260f565b6125725760405162461bcd60e51b8152600401610b9c90612bdf565b60006060866001600160a01b0316858760405161258f91906127f8565b60006040518083038185875af1925050503d80600081146125cc576040519150601f19603f3d011682016040523d82523d6000602084013e6125d1565b606091505b509150915081156125e55791506125439050565b8051156125f55780518082602001fd5b8360405162461bcd60e51b8152600401610b9c91906128bd565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612543575050151592915050565b8280548282559060005260206000209081019282156126885760005260206000209182015b8281111561268857825482559160010191906001019061266d565b50612694929150612698565b5090565b5b808211156126945780546001600160a01b0319168155600101612699565b80356001600160a01b038116811461086057600080fd5b6000602082840312156126df578081fd5b610e4d83836126b7565b600080604083850312156126fb578081fd5b61270584846126b7565b915061271484602085016126b7565b90509250929050565b600080600060608486031215612731578081fd5b833561273c81612cda565b9250602084013561274c81612cda565b929592945050506040919091013590565b6000806040838503121561276f578182fd5b61277984846126b7565b946020939093013593505050565b600060208284031215612798578081fd5b81518015158114610e4d578182fd5b6000602082840312156127b8578081fd5b5035919050565b6000602082840312156127d0578081fd5b5051919050565b600080604083850312156127e9578182fd5b50508035926020909101359150565b6000825161280a818460208701612cae565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156128a65783516001600160a01b031683529284019291840191600101612881565b50909695505050505050565b901515815260200190565b60006020825282518060208401526128dc816040850160208701612cae565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e4174206c656173742031204441524b60881b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526015908201527443616e6e6f7420626520616464647265737328302960581b604082015260600190565b602080825260119082015270043616e6e6f74207769746864726177203607c1b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f43616e6e6f742062652030206461797360801b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60005b83811015612cc9578181015183820152602001612cb1565b838111156114c45750506000910152565b6001600160a01b0381168114610a1c57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ac92125541631d826d59cb2291f4e35e2b998571d676eb20874a5908630312064736f6c634300060c0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103da5760003560e01c80636a3e42b81161020a578063a9059cbb11610125578063d48e180d116100b8578063dd62ed3e11610087578063dd62ed3e14610762578063e8e42d2014610775578063e9fad8ee1461077d578063eae3821614610785578063f2fde38b1461078d576103da565b8063d48e180d1461072c578063d5a8fb2d1461073f578063d924b72614610752578063db49407a1461075a576103da565b8063bd0abc0f116100f4578063bd0abc0f146106f6578063bfe76676146106fe578063c982b43f14610711578063cdb8625514610719576103da565b8063a9059cbb146106cb578063b2645c3b146106de578063b3c6cc88146106e6578063b6c3251a146106ee576103da565b8063873c8c011161019d5780639b715db71161016c5780639b715db71461068a578063a457c2d71461069d578063a5b211e3146106b0578063a694fc3a146106b8576103da565b8063873c8c011461065f5780638da5cb5b146106725780639331d80a1461067a57806395d89b4114610682576103da565b8063715018a6116101d9578063715018a6146106345780637d27d5401461063c578063801680351461064f57806380e52bd214610657576103da565b80636a3e42b8146105f35780636b3383d7146106065780636dfbabd41461060e57806370a0823114610621576103da565b8063375535c6116102fa5780634abee1151161028d57806366e997221161025c57806366e99722146105b257806367d9e8bc146105c55780636800410b146105cd5780636a2acac1146105e0576103da565b80634abee1151461057c5780634edf5b951461058457806350b73db1146105975780636369045c146105aa576103da565b80633b7234fc116102c95780633b7234fc146105515780633d18b9121461056457806344b420f11461056c57806348d9588f14610574576103da565b8063375535c61461050e578063389bffec1461051657806338b655861461052b578063395093511461053e576103da565b806318160ddd1161037257806323b872dd1161034157806323b872dd146104c05780632e1a7d4d146104d3578063313ce567146104e657806336ac49e7146104fb576103da565b806318160ddd146104955780631b7ee0011461049d5780631d92a881146104a557806323327ba9146104b8576103da565b80630a5b9361116103ae5780630a5b9361146104525780630fcded261461045a57806313ddbea01461046d5780631615e11d14610480576103da565b8062dd495e146103df57806306fdde0314610408578063095ea7b31461041d5780630a4cf0611461043d575b600080fd5b6103f26103ed3660046126ce565b6107a0565b6040516103ff9190612c97565b60405180910390f35b6104106107b2565b6040516103ff91906128bd565b61043061042b36600461275d565b610848565b6040516103ff91906128b2565b61045061044b3660046127a7565b610866565b005b6103f26108eb565b6104506104683660046127a7565b6108f1565b61045061047b3660046127a7565b610954565b6104886109bb565b6040516103ff9190612814565b6103f26109ca565b6104506109d0565b6103f26104b33660046126e9565b610a1f565b6103f2610a3c565b6104306104ce36600461271d565b610a4f565b6104506104e13660046127a7565b610ad6565b6104ee610d16565b6040516103ff9190612ca0565b6104506105093660046127a7565b610d1f565b6103f2610d6a565b61051e610d70565b6040516103ff9190612865565b6103f26105393660046126e9565b610dd1565b61043061054c36600461275d565b610e54565b61045061055f3660046127a7565b610ea2565b610450610ee2565b6103f2610efb565b6103f2610f01565b610450610f07565b6104506105923660046127a7565b610f70565b6104886105a53660046127d7565b610fcc565b610450611001565b6103f26105c03660046126ce565b61104d565b61045061105f565b6104506105db3660046127a7565b611344565b6104506105ee3660046126e9565b6113ab565b6103f26106013660046126e9565b6114ca565b6103f26114e7565b61048861061c3660046127a7565b6114ed565b6103f261062f3660046126ce565b611514565b610450611533565b6103f261064a3660046126ce565b6115bd565b61045061165a565b61045061167f565b61048861066d3660046127a7565b611848565b610488611855565b610488611869565b610410611878565b6104506106983660046127d7565b6118d9565b6104306106ab36600461275d565b61191e565b610488611986565b6104506106c63660046127a7565b611995565b6104306106d936600461275d565b611b52565b610450611b66565b610488611b8b565b610488611b9a565b610450611ba9565b61051e61070c3660046127a7565b611bce565b610488611c3a565b6104306107273660046126ce565b611c49565b61045061073a3660046127a7565b611c5e565b61045061074d3660046126ce565b611c9e565b610450611d50565b610488611d9d565b6103f26107703660046126e9565b611dac565b6103f2611dd7565b610450611ddd565b610450611df1565b61045061079b3660046126ce565b611e16565b60106020526000908152604090205481565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b600061085c610855611edd565b8484611ee1565b5060015b92915050565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546108df91908390811061089e57fe5b600091825260209091200154600c80546001600160a01b039092169160019081106108c557fe5b6000918252602090912001546001600160a01b03166113ab565b600101610869565b5050565b60075481565b60005b6000828152601960205260409020548110156108e7576000828152601960205260409020805461094c91908390811061092957fe5b6000918252602082200154600c80546001600160a01b039092169290916108c557fe5b6001016108f4565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546109b391908390811061098c57fe5b600091825260209091200154600c80546001600160a01b039092169160059081106108c557fe5b600101610957565b6006546001600160a01b031681565b60025490565b60005b600d54811015610a1c57610a14600d82815481106109ed57fe5b600091825260209091200154600c80546001600160a01b039092169160039081106108c557fe5b6001016109d3565b50565b601160209081526000928352604080842090915290825290205481565b6000610a4a42600854611f95565b905090565b6000610a5c848484611fab565b610acc84610a68611edd565b610ac785604051806060016040528060288152602001612d38602891396001600160a01b038a16600090815260016020526040812090610aa6611edd565b6001600160a01b0316815260208101919091526040016000205491906120c0565b611ee1565b5060019392505050565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da610af5816115bd565b6001600160a01b0382166000908152600f6020526040902055610b16610a3c565b6009556001600160a01b03821615610b7c57610b328282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b60008311610ba55760405162461bcd60e51b8152600401610b9c90612a4a565b60405180910390fd5b6000610bba84610bb433611514565b906120ec565b905080610cae57336000908152600e60205260408120805460ff191690555b336001600160a01b0316600d8281548110610bf057fe5b6000918252602090912001546001600160a01b031614610c1257600101610bd9565b600d8054610c219060016120ec565b81548110610c2b57fe5b600091825260209091200154600d80546001600160a01b039092169183908110610c5157fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b03160217905550600d805480610c8a57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b610cb8338561212e565b600654610ccf906001600160a01b03163386612210565b336001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d585604051610d089190612c97565b60405180910390a250505050565b60055460ff1690565b60005b600d548110156108e757610d62600d8281548110610d3c57fe5b600091825260209091200154600c80546001600160a01b0390921691859081106108c557fe5b600101610d22565b60095481565b6060600d80548060200260200160405190810160405280929190818152602001828054801561083e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610daa575050505050905090565b6001600160a01b038083166000818152601160209081526040808320948616808452948252808320549383526012825280832094835293905291822054610e4d9190610e4790670de0b6b3a764000090610e4190610e3290610bb4896115bd565b610e3b89611514565b90612266565b906122a0565b906122e2565b9392505050565b600061085c610e61611edd565b84610ac78560016000610e72611edd565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906122e2565b60005b6000828152601960205260409020548110156108e75760008281526019602052604090208054610eda9190839081106109ed57fe5b600101610ea5565b601354610ef99033906001600160a01b03166113ab565b565b600b5481565b600a5481565b610f0f611edd565b60055461010090046001600160a01b03908116911614610f415760405162461bcd60e51b8152600401610b9c90612ab6565b600c805480610f4c57fe5b600082815260209020810160001990810180546001600160a01b0319169055019055565b610f78611edd565b60055461010090046001600160a01b03908116911614610faa5760405162461bcd60e51b8152600401610b9c90612ab6565b80610fc75760405162461bcd60e51b8152600401610b9c90612aeb565b600755565b60196020528160005260406000208181548110610fe557fe5b6000918252602090912001546001600160a01b03169150829050565b60005b600d54811015610a1c57611045600d828154811061101e57fe5b600091825260209091200154600c80546001600160a01b039092169160049081106108c557fe5b600101611004565b600f6020526000908152604090205481565b60005b600c54811015610a1c576110986000600c838154811061107e57fe5b6000918252602090912001546001600160a01b0316612307565b600c81815481106110a557fe5b6000918252602090912001546001600160a01b0316733108ccfd96816f9e663baa0e8c5951d229e8c6da1415611168576111606110e06109ca565b6006546040516370a0823160e01b81526001600160a01b03909116906370a0823190611110903090600401612814565b60206040518083038186803b15801561112857600080fd5b505afa15801561113c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb491906127bf565b600a55611202565b600c818154811061117557fe5b6000918252602090912001546040516370a0823160e01b81526001600160a01b03909116906370a08231906111ae903090600401612814565b60206040518083038186803b1580156111c657600080fd5b505afa1580156111da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111fe91906127bf565b600a555b600854421061125557600754600a5461121a916122a0565b60106000600c848154811061122b57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020556112ff565b60085460009061126590426120ec565b905060006112a960106000600c868154811061127d57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020548390612266565b90506112c6600754610e4183600a546122e290919063ffffffff16565b60106000600c86815481106112d757fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205550505b42600955600a546040517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9161133491612c97565b60405180910390a1600101611062565b60005b6000828152601960205260409020548110156108e757600082815260196020526040902080546113a391908390811061137c57fe5b600091825260209091200154600c80546001600160a01b039092169160029081106108c557fe5b600101611347565b81816113b6816115bd565b6001600160a01b0382166000908152600f60205260409020556113d7610a3c565b6009556001600160a01b0382161561143d576113f38282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b6114478484610dd1565b600b819055156114c4576001600160a01b03808516600090815260116020908152604080832093871680845293909152812055600b5461148991908690612210565b836001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486600b54604051610d089190612c97565b50505050565b601260209081526000928352604080842090915290825290205481565b60085481565b600d81815481106114fa57fe5b6000918252602090912001546001600160a01b0316905081565b6001600160a01b0381166000908152602081905260409020545b919050565b61153b611edd565b60055461010090046001600160a01b0390811691161461156d5760405162461bcd60e51b8152600401610b9c90612ab6565b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60006115c76109ca565b6115ea57506001600160a01b0381166000908152600f602052604090205461152e565b61086061163b6115f86109ca565b610e41670de0b6b3a7640000610e3b60106000896001600160a01b03166001600160a01b0316815260200190815260200160002054610e3b600954610bb4610a3c565b6001600160a01b0384166000908152600f6020526040902054906122e2565b60005b600d54811015610a1c57611677600d828154811061092957fe5b60010161165d565b611687611edd565b60055461010090046001600160a01b039081169116146116b95760405162461bcd60e51b8152600401610b9c90612ab6565b600d546064116118105760005b600d546116db90600190610e479060646122a0565b81101561180a57600d546116f09060646122a0565b8114156117895760005b611711611708836064612266565b600d54906120ec565b811015611783576000828152601960205260409020600d61173783610e47866064612266565b8154811061174157fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b03909216919091179055016116fa565b50611802565b60005b6064811015611800576000828152601960205260409020600d6117b483610e47866064612266565b815481106117be57fe5b6000918252602080832090910154835460018181018655948452919092200180546001600160a01b0319166001600160a01b039092169190911790550161178c565b505b6001016116c6565b50610ef9565b600080526019602052600d8054610a1c917fd2ac945fcc0096878c763e37d6929b78378c1a2defabde8ba7ee5ed1d6e7a5b291612648565b600c81815481106114fa57fe5b60055461010090046001600160a01b031690565b6017546001600160a01b031681565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561083e5780601f106108135761010080835404028352916020019161083e565b60005b6000838152601960205260409020548110156119195760008381526019602052604090208054611911919083908110610d3c57fe5b6001016118dc565b505050565b600061085c61192b611edd565b84610ac785604051806060016040528060258152602001612d606025913960016000611955611edd565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906120c0565b6016546001600160a01b031681565b33733108ccfd96816f9e663baa0e8c5951d229e8c6da6119b4816115bd565b6001600160a01b0382166000908152600f60205260409020556119d5610a3c565b6009556001600160a01b03821615611a3b576119f18282610dd1565b6001600160a01b03808416600081815260116020908152604080832094871680845294825280832095909555600f8152848220549282526012815284822093825292909252919020555b670de0b6b3a76400008311611a625760405162461bcd60e51b8152600401610b9c906129bb565b611a6b33611514565b158015611a885750336000908152600e602052604090205460ff16155b15611aea57336000818152600e60205260408120805460ff19166001908117909155600d805491820181559091527fd7b6990105719101dabeb77144f2a3385c8033acd3af97e9423a695e81ad1eb50180546001600160a01b03191690911790555b611af43384612399565b600654611b0c906001600160a01b031633308661244d565b336001600160a01b03167f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d84604051611b459190612c97565b60405180910390a2505050565b600061085c611b5f611edd565b8484611fab565b60005b600d54811015610a1c57611b83600d828154811061089e57fe5b600101611b69565b6014546001600160a01b031681565b6018546001600160a01b031681565b60005b600d54811015610a1c57611bc6600d828154811061137c57fe5b600101611bac565b600081815260196020908152604091829020805483518184028101840190945280845260609392830182828015611c2e57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611c10575b50505050509050919050565b6015546001600160a01b031681565b600e6020526000908152604090205460ff1681565b60005b6000828152601960205260409020548110156108e75760008281526019602052604090208054611c9691908390811061101e57fe5b600101611c61565b611ca6611edd565b60055461010090046001600160a01b03908116911614611cd85760405162461bcd60e51b8152600401610b9c90612ab6565b6001600160a01b038116611cfe5760405162461bcd60e51b8152600401610b9c90612a1b565b600c80546001810182556000919091527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0392909216919091179055565b611d58611edd565b60055461010090046001600160a01b03908116911614611d8a5760405162461bcd60e51b8152600401610b9c90612ab6565b600754611d989042906122e2565b600855565b6013546001600160a01b031681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600d5490565b611de96104e133611514565b610ef9610ee2565b60005b600d54811015610a1c57611e0e600d828154811061098c57fe5b600101611df4565b611e1e611edd565b60055461010090046001600160a01b03908116911614611e505760405162461bcd60e51b8152600401610b9c90612ab6565b6001600160a01b038116611e765760405162461bcd60e51b8152600401610b9c90612933565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b3390565b6001600160a01b038316611f075760405162461bcd60e51b8152600401610b9c90612b9b565b6001600160a01b038216611f2d5760405162461bcd60e51b8152600401610b9c90612979565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590611f88908590612c97565b60405180910390a3505050565b6000818310611fa45781610e4d565b5090919050565b6001600160a01b038316611fd15760405162461bcd60e51b8152600401610b9c90612b56565b6001600160a01b038216611ff75760405162461bcd60e51b8152600401610b9c906128f0565b612002838383611919565b61203f81604051806060016040528060268152602001612d12602691396001600160a01b03861660009081526020819052604090205491906120c0565b6001600160a01b03808516600090815260208190526040808220939093559084168152205461206e90826122e2565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90611f88908590612c97565b600081848411156120e45760405162461bcd60e51b8152600401610b9c91906128bd565b505050900390565b6000610e4d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120c0565b6001600160a01b0382166121545760405162461bcd60e51b8152600401610b9c90612b15565b61216082600083611919565b61219d81604051806060016040528060228152602001612cf0602291396001600160a01b03851660009081526020819052604090205491906120c0565b6001600160a01b0383166000908152602081905260409020556002546121c390826120ec565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612204908590612c97565b60405180910390a35050565b6119198363a9059cbb60e01b848460405160240161222f92919061284c565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915261246e565b60008261227557506000610860565b8282028284828161228257fe5b0414610e4d5760405162461bcd60e51b8152600401610b9c90612a75565b6000610e4d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506124fd565b600082820183811015610e4d5760405162461bcd60e51b8152600401610b9c906129e4565b612310816115bd565b6001600160a01b0382166000908152600f6020526040902055612331610a3c565b6009556001600160a01b038216156108e75761234d8282610dd1565b6001600160a01b0392831660008181526011602090815260408083209590961680835294815285822093909355600f835284812054918152601283528481209381529290915291902055565b6001600160a01b0382166123bf5760405162461bcd60e51b8152600401610b9c90612c60565b6123cb60008383611919565b6002546123d890826122e2565b6002556001600160a01b0382166000908152602081905260409020546123fe90826122e2565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612204908590612c97565b6114c4846323b872dd60e01b85858560405160240161222f93929190612828565b60606124c3826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166125349092919063ffffffff16565b80519091501561191957808060200190518101906124e19190612787565b6119195760405162461bcd60e51b8152600401610b9c90612c16565b6000818361251e5760405162461bcd60e51b8152600401610b9c91906128bd565b50600083858161252a57fe5b0495945050505050565b6060612543848460008561254b565b949350505050565b60606125568561260f565b6125725760405162461bcd60e51b8152600401610b9c90612bdf565b60006060866001600160a01b0316858760405161258f91906127f8565b60006040518083038185875af1925050503d80600081146125cc576040519150601f19603f3d011682016040523d82523d6000602084013e6125d1565b606091505b509150915081156125e55791506125439050565b8051156125f55780518082602001fd5b8360405162461bcd60e51b8152600401610b9c91906128bd565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612543575050151592915050565b8280548282559060005260206000209081019282156126885760005260206000209182015b8281111561268857825482559160010191906001019061266d565b50612694929150612698565b5090565b5b808211156126945780546001600160a01b0319168155600101612699565b80356001600160a01b038116811461086057600080fd5b6000602082840312156126df578081fd5b610e4d83836126b7565b600080604083850312156126fb578081fd5b61270584846126b7565b915061271484602085016126b7565b90509250929050565b600080600060608486031215612731578081fd5b833561273c81612cda565b9250602084013561274c81612cda565b929592945050506040919091013590565b6000806040838503121561276f578182fd5b61277984846126b7565b946020939093013593505050565b600060208284031215612798578081fd5b81518015158114610e4d578182fd5b6000602082840312156127b8578081fd5b5035919050565b6000602082840312156127d0578081fd5b5051919050565b600080604083850312156127e9578182fd5b50508035926020909101359150565b6000825161280a818460208701612cae565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156128a65783516001600160a01b031683529284019291840191600101612881565b50909695505050505050565b901515815260200190565b60006020825282518060208401526128dc816040850160208701612cae565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600f908201526e4174206c656173742031204441524b60881b604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526015908201527443616e6e6f7420626520616464647265737328302960581b604082015260600190565b602080825260119082015270043616e6e6f74207769746864726177203607c1b604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f43616e6e6f742062652030206461797360801b604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60005b83811015612cc9578181015183820152602001612cb1565b838111156114c45750506000910152565b6001600160a01b0381168114610a1c57600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207ac92125541631d826d59cb2291f4e35e2b998571d676eb20874a5908630312064736f6c634300060c0033

Deployed Bytecode Sourcemap

31967:13746:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32757:57;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19857:83;;;:::i;:::-;;;;;;;:::i;21963:169::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43533:274::-;;;;;;:::i;:::-;;:::i;:::-;;32273:44;;;:::i;43252:273::-;;;;;;:::i;:::-;;:::i;44671:276::-;;;;;;:::i;:::-;;:::i;32193:71::-;;;:::i;:::-;;;;;;;:::i;20932:100::-;;;:::i;41061:233::-;;;:::i;32823:84::-;;;;;;:::i;:::-;;:::i;36239:153::-;;;:::i;22614:321::-;;;;;;:::i;:::-;;:::i;37721:801::-;;;;;;:::i;:::-;;:::i;20784:83::-;;;:::i;:::-;;;;;;;:::i;41782:259::-;;;;;;:::i;:::-;;:::i;32374:42::-;;;:::i;45403:133::-;;;:::i;:::-;;;;;;;:::i;36847:312::-;;;;;;:::i;:::-;;:::i;23344:218::-;;;;;;:::i;:::-;;:::i;44099:278::-;;;;;;:::i;:::-;;:::i;38633:89::-;;;:::i;32465:40::-;;;:::i;32423:35::-;;;:::i;34509:90::-;;;:::i;34680:199::-;;;;;;:::i;:::-;;:::i;42109:72::-;;;;;;:::i;:::-;;:::i;41302:233::-;;;:::i;32681:69::-;;;;;;:::i;:::-;;:::i;38730:1145::-;;;:::i;43815:276::-;;;;;;:::i;:::-;;:::i;39887:454::-;;;;;;:::i;:::-;;:::i;32914:90::-;;;;;;:::i;:::-;;:::i;32324:43::-;;;:::i;32554:47::-;;;;;;:::i;:::-;;:::i;21095:119::-;;;;;;:::i;:::-;;:::i;15601:148::-;;;:::i;36400:433::-;;;;;;:::i;:::-;;:::i;40349:228::-;;;:::i;42190:1054::-;;;:::i;32514:33::-;;;;;;:::i;:::-;;:::i;14959:79::-;;;:::i;33638:72::-;;;:::i;20059:87::-;;;:::i;44955:302::-;;;;;;:::i;:::-;;:::i;24065:269::-;;;;;;:::i;:::-;;:::i;33559:72::-;;;:::i;37167:546::-;;;;;;:::i;:::-;;:::i;21427:175::-;;;;;;:::i;:::-;;:::i;40585:229::-;;;:::i;33399:72::-;;;:::i;33717:70::-;;;:::i;40822:231::-;;;:::i;45544:166::-;;;;;;:::i;:::-;;:::i;33478:74::-;;;:::i;32614:58::-;;;;;;:::i;:::-;;:::i;44385:278::-;;;;;;:::i;:::-;;:::i;34291:210::-;;;;;;:::i;:::-;;:::i;34887:136::-;;;:::i;33321:71::-;;;:::i;21665:151::-;;;;;;:::i;:::-;;:::i;45265:130::-;;;:::i;38530:95::-;;;:::i;41543:231::-;;;:::i;15904:244::-;;;;;;:::i;:::-;;:::i;32757:57::-;;;;;;;;;;;;;:::o;19857:83::-;19927:5;19920:12;;;;;;;;-1:-1:-1;;19920:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19894:13;;19920:12;;19927:5;;19920:12;;19927:5;19920:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19857:83;:::o;21963:169::-;22046:4;22063:39;22072:12;:10;:12::i;:::-;22086:7;22095:6;22063:8;:39::i;:::-;-1:-1:-1;22120:4:0;21963:169;;;;;:::o;43533:274::-;43612:6;43608:192;43627:45;;;;:38;:45;;;;;:52;43624:55;;43608:192;;;43718:45;;;;:38;:45;;;;;:48;;43700:88;;43718:45;43764:1;;43718:48;;;;;;;;;;;;;;;;43768:16;:19;;-1:-1:-1;;;;;43718:48:0;;;;;;43768:19;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43768:19:0;43700:17;:88::i;:::-;43681:3;;43608:192;;;;43533:274;:::o;32273:44::-;;;;:::o;43252:273::-;43330:6;43326:192;43345:45;;;;:38;:45;;;;;:52;43342:55;;43326:192;;;43436:45;;;;:38;:45;;;;;:48;;43418:88;;43436:45;43482:1;;43436:48;;;;;;;;;;;;;;;43486:16;:19;;-1:-1:-1;;;;;43436:48:0;;;;43486:16;;:19;;;43418:88;43399:3;;43326:192;;44671:276;44752:6;44748:192;44767:45;;;;:38;:45;;;;;:52;44764:55;;44748:192;;;44858:45;;;;:38;:45;;;;;:48;;44840:88;;44858:45;44904:1;;44858:48;;;;;;;;;;;;;;;;44908:16;:19;;-1:-1:-1;;;;;44858:48:0;;;;44925:1;;44908:19;;;;;44840:88;44821:3;;44748:192;;32193:71;;;-1:-1:-1;;;;;32193:71:0;;:::o;20932:100::-;21012:12;;20932:100;:::o;41061:233::-;41129:6;41125:162;41144:30;:37;41141:40;;41125:162;;;41202:73;41220:30;41251:1;41220:33;;;;;;;;;;;;;;;;;;41255:16;:19;;-1:-1:-1;;;;;41220:33:0;;;;41272:1;;41255:19;;;;;41202:73;41183:3;;41125:162;;;;41061:233::o;32823:84::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;36239:153::-;36306:7;36333:51;36342:15;36359:24;;36333:8;:51::i;:::-;36326:58;;36239:153;:::o;22614:321::-;22720:4;22737:36;22747:6;22755:9;22766:6;22737:9;:36::i;:::-;22784:121;22793:6;22801:12;:10;:12::i;:::-;22815:89;22853:6;22815:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22815:19:0;;;;;;:11;:19;;;;;;22835:12;:10;:12::i;:::-;-1:-1:-1;;;;;22815:33:0;;;;;;;;;;;;-1:-1:-1;22815:33:0;;;:89;:37;:89::i;:::-;22784:8;:121::i;:::-;-1:-1:-1;22923:4:0;22614:321;;;;;:::o;37721:801::-;37786:10;37798:42;35241:32;35267:5;35241:25;:32::i;:::-;-1:-1:-1;;;;;35197:41:0;;;;;;:34;:41;;;;;:76;35314:37;:35;:37::i;:::-;35284:27;:67;-1:-1:-1;;;;;35366:21:0;;;35362:249;;35454:33;35472:7;35481:5;35454:17;:33::i;:::-;-1:-1:-1;;;;;35404:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;35558:34;:41;;;;;;35502:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;35362:249;37870:1:::1;37861:6;:10;37853:40;;;;-1:-1:-1::0;;;37853:40:0::1;;;;;;;:::i;:::-;;;;;;;;;37904:12;37919:33;37945:6;37919:21;37929:10;37919:9;:21::i;:::-;:25:::0;::::1;:33::i;:::-;37904:48:::0;-1:-1:-1;37967:12:0;37963:421:::1;;38023:10;38037:5;37996:38:::0;;;:26:::1;:38;::::0;;;;:46;;-1:-1:-1;;37996:46:0::1;::::0;;38089:102:::1;38137:10;-1:-1:-1::0;;;;;38096:51:0::1;:30;38127:5;38096:37;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;38096:37:0::1;:51;38089:102;;38168:7;;38089:102;;;38245:30;38276:37:::0;;:44:::1;::::0;38318:1:::1;38276:41;:44::i;:::-;38245:76;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;38205:30:::1;:37:::0;;-1:-1:-1;;;;;38245:76:0;;::::1;::::0;38236:5;;38205:37;::::1;;;;;;;;;;;;;:116;;;;;-1:-1:-1::0;;;;;38205:116:0::1;;;;;-1:-1:-1::0;;;;;38205:116:0::1;;;;;;38336:30;:36;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;38336:36:0;;;;;-1:-1:-1;;;;;;38336:36:0::1;::::0;;;;;-1:-1:-1;37963:421:0::1;38396:25;38402:10;38414:6;38396:5;:25::i;:::-;38432:4;::::0;:37:::1;::::0;-1:-1:-1;;;;;38432:4:0::1;38450:10;38462:6:::0;38432:17:::1;:37::i;:::-;38495:10;-1:-1:-1::0;;;;;38485:29:0::1;;38507:6;38485:29;;;;;;:::i;:::-;;;;;;;;35621:1;37721:801:::0;;;:::o;20784:83::-;20850:9;;;;20784:83;:::o;41782:259::-;41872:6;41868:166;41887:30;:37;41884:40;;41868:166;;;41945:77;41963:30;41994:1;41963:33;;;;;;;;;;;;;;;;;;41998:16;:23;;-1:-1:-1;;;;;41963:33:0;;;;42015:5;;41998:23;;;;;41945:77;41926:3;;41868:166;;32374:42;;;;:::o;45403:133::-;45460:16;45497:30;45489:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45489:39:0;;;;;;;;;;;;;;;;;;;;;;45403:133;:::o;36847:312::-;-1:-1:-1;;;;;37103:40:0;;;36926:7;37103:40;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;;37023:46;;;:37;:46;;;;;:53;;;;;;;;;;36953:198;;37103:47;36953:145;;37093:4;;36953:135;;36986:91;;:32;37144:5;36986:25;:32::i;:91::-;36953:18;36963:7;36953:9;:18::i;:::-;:22;;:135::i;:::-;:139;;:145::i;:::-;:149;;:198::i;:::-;36946:205;36847:312;-1:-1:-1;;;36847:312:0:o;23344:218::-;23432:4;23449:83;23458:12;:10;:12::i;:::-;23472:7;23481:50;23520:10;23481:11;:25;23493:12;:10;:12::i;:::-;-1:-1:-1;;;;;23481:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23481:25:0;;;:34;;;;;;;;;;;:38;:50::i;44099:278::-;44182:6;44178:192;44197:45;;;;:38;:45;;;;;:52;44194:55;;44178:192;;;44288:45;;;;:38;:45;;;;;:48;;44270:88;;44288:45;44334:1;;44288:48;;;;;44270:88;44251:3;;44178:192;;38633:89;38702:11;;38672:42;;38690:10;;-1:-1:-1;;;;;38702:11:0;38672:17;:42::i;:::-;38633:89::o;32465:40::-;;;;:::o;32423:35::-;;;;:::o;34509:90::-;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;34569:16:::1;:22;;;;;;;;::::0;;;::::1;::::0;;;;-1:-1:-1;;34569:22:0;;;;;-1:-1:-1;;;;;;34569:22:0::1;::::0;;;;;34509:90::o;34680:199::-;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;34770:25;34762:54:::1;;;;-1:-1:-1::0;;;34762:54:0::1;;;;;;;:::i;:::-;34829:19;:42:::0;34680:199::o;42109:72::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;42109:72:0;;-1:-1:-1;42109:72:0;;-1:-1:-1;42109:72:0:o;41302:233::-;41370:6;41366:162;41385:30;:37;41382:40;;41366:162;;;41443:73;41461:30;41492:1;41461:33;;;;;;;;;;;;;;;;;;41496:16;:19;;-1:-1:-1;;;;;41461:33:0;;;;41513:1;;41496:19;;;;;41443:73;41424:3;;41366:162;;32681:69;;;;;;;;;;;;;:::o;38730:1145::-;38797:6;38793:1075;38812:16;:23;38809:26;;38793:1075;;;38856:65;38897:1;38901:16;38918:1;38901:19;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38901:19:0;38856:32;:65::i;:::-;38940:16;38957:1;38940:19;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38940:19:0;38963:42;38940:65;38936:293;;;39049:48;39083:13;:11;:13::i;:::-;39049:4;;:29;;-1:-1:-1;;;39049:29:0;;-1:-1:-1;;;;;39049:4:0;;;;:14;;:29;;39072:4;;39049:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:48::-;39026:20;:71;38936:293;;;39168:16;39185:1;39168:19;;;;;;;;;;;;;;;;;;39161:52;;-1:-1:-1;;;39161:52:0;;-1:-1:-1;;;;;39168:19:0;;;;39161:37;;:52;;39207:4;;39161:52;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39138:20;:75;38936:293;39266:24;;39247:15;:43;39243:501;;39382:19;;39357:20;;:45;;:24;:45::i;:::-;39311:22;:43;39334:16;39351:1;39334:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39334:19:0;39311:43;;;;;;;;;;;;:91;39243:501;;;39463:24;;39443:17;;39463:45;;39492:15;39463:28;:45::i;:::-;39443:65;;39527:16;39546:58;39560:22;:43;39583:16;39600:1;39583:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39583:19:0;39560:43;;;;;;;;;;;;;39546:9;;:13;:58::i;:::-;39527:77;;39669:59;39708:19;;39669:34;39694:8;39669:20;;:24;;:34;;;;:::i;:59::-;39623:22;:43;39646:16;39663:1;39646:19;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39646:19:0;39623:43;;;;;;;;;;;;:105;-1:-1:-1;;39243:501:0;39788:15;39758:27;:45;39835:20;;39823:33;;;;;;;:::i;:::-;;;;;;;;38837:3;;38793:1075;;43815:276;43896:6;43892:192;43911:45;;;;:38;:45;;;;;:52;43908:55;;43892:192;;;44002:45;;;;:38;:45;;;;;:48;;43984:88;;44002:45;44048:1;;44002:48;;;;;;;;;;;;;;;;44052:16;:19;;-1:-1:-1;;;;;44002:48:0;;;;44069:1;;44052:19;;;;;43984:88;43965:3;;43892:192;;39887:454;39977:7;39986:5;35241:32;35267:5;35241:25;:32::i;:::-;-1:-1:-1;;;;;35197:41:0;;;;;;:34;:41;;;;;:76;35314:37;:35;:37::i;:::-;35284:27;:67;-1:-1:-1;;;;;35366:21:0;;;35362:249;;35454:33;35472:7;35481:5;35454:17;:33::i;:::-;-1:-1:-1;;;;;35404:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;35558:34;:41;;;;;;35502:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;35362:249;40034:33:::1;40052:7;40061:5;40034:17;:33::i;:::-;40006:25;:61:::0;;;40082:29;40078:256:::1;;-1:-1:-1::0;;;;;40128:40:0;;::::1;40178:1;40128:40:::0;;;:31:::1;:40;::::0;;;;;;;:47;;::::1;::::0;;;;;;;;;:51;40230:25:::1;::::0;40194:62:::1;::::0;40128:47;40160:7;;40194:26:::1;:62::i;:::-;40287:7;-1:-1:-1::0;;;;;40276:46:0::1;;40296:25;;40276:46;;;;;;:::i;40078:256::-;39887:454:::0;;;;:::o;32914:90::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;32324:43::-;;;;:::o;32554:47::-;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32554:47:0;;-1:-1:-1;32554:47:0;:::o;21095:119::-;-1:-1:-1;;;;;21188:18:0;;21161:7;21188:18;;;;;;;;;;;21095:119;;;;:::o;15601:148::-;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;15692:6:::1;::::0;15671:40:::1;::::0;15708:1:::1;::::0;15692:6:::1;::::0;::::1;-1:-1:-1::0;;;;;15692:6:0::1;::::0;15671:40:::1;::::0;15708:1;;15671:40:::1;15722:6;:19:::0;;-1:-1:-1;;;;;;15722:19:0::1;::::0;;15601:148::o;36400:433::-;36470:7;36496:13;:11;:13::i;:::-;36492:99;;-1:-1:-1;;;;;;36538:41:0;;;;;;:34;:41;;;;;;36531:48;;36492:99;36610:201;36666:134;36786:13;:11;:13::i;:::-;36666:115;36776:4;36666:105;36741:22;:29;36764:5;-1:-1:-1;;;;;36741:29:0;-1:-1:-1;;;;;36741:29:0;;;;;;;;;;;;;36666:70;36708:27;;36666:37;:35;:37::i;:134::-;-1:-1:-1;;;;;36610:41:0;;;;;;:34;:41;;;;;;;:45;:201::i;40349:228::-;40412:6;40408:162;40427:30;:37;40424:40;;40408:162;;;40485:73;40503:30;40534:1;40503:33;;;;;;;40485:73;40466:3;;40408:162;;42190:1054;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;42247:30:::1;:37:::0;42288:3:::1;-1:-1:-1::0;42243:994:0::1;;42327:6;42323:796;42342:30;:37:::0;:53:::1;::::0;42393:1:::1;::::0;42342:46:::1;::::0;42384:3:::1;42342:41;:46::i;:53::-;42339:1;:56;42323:796;;;42433:30;:37:::0;:46:::1;::::0;42475:3:::1;42433:41;:46::i;:::-;42428:1;:51;42424:679;;;42532:6;42528:255;42547:53;42589:10;:1:::0;42595:3:::1;42589:5;:10::i;:::-;42547:30;:37:::0;;:41:::1;:53::i;:::-;42544:1;:56;42528:255;;;42661:41;::::0;;;:38:::1;:41;::::0;;;;42708:30:::1;42739:17;42754:1:::0;42739:10:::1;42700:1:::0;42745:3:::1;42739:5;:10::i;:17::-;42708:49;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;42661:97;;42708:49;42661:97;;::::1;::::0;;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42661:97:0::1;-1:-1:-1::0;;;;;42708:49:0;;::::1;42661:97:::0;;;::::1;::::0;;42602:3:::1;42528:255;;;;42424:679;;;42860:6;42856:205;42875:3;42872:1;:6;42856:205;;;42939:41;::::0;;;:38:::1;:41;::::0;;;;42986:30:::1;43017:17;43032:1:::0;43017:10:::1;42978:1:::0;43023:3:::1;43017:5;:10::i;:17::-;42986:49;;;;;;;;;::::0;;;::::1;::::0;;;;;::::1;::::0;42939:97;;42986:49;42939:97;;::::1;::::0;;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;42939:97:0::1;-1:-1:-1::0;;;;;42986:49:0;;::::1;42939:97:::0;;;::::1;::::0;;42880:3:::1;42856:205;;;;42424:679;42397:3;;42323:796;;;;42243:994;;;43151:41;::::0;;:38:::1;:41;::::0;43195:30:::1;43151:74:::0;;::::1;::::0;:41;;:74:::1;:::i;32514:33::-:0;;;;;;;;;;14959:79;15024:6;;;;;-1:-1:-1;;;;;15024:6:0;;14959:79::o;33638:72::-;;;-1:-1:-1;;;;;33638:72:0;;:::o;20059:87::-;20131:7;20124:14;;;;;;;;-1:-1:-1;;20124:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20098:13;;20124:14;;20131:7;;20124:14;;20131:7;20124:14;;;;;;;;;;;;;;;;;;;;;;;;44955:302;45057:6;45053:197;45072:45;;;;:38;:45;;;;;:52;45069:55;;45053:197;;;45163:45;;;;:38;:45;;;;;:48;;45145:93;;45163:45;45209:1;;45163:48;;;;;45145:93;45126:3;;45053:197;;;;44955:302;;:::o;24065:269::-;24158:4;24175:129;24184:12;:10;:12::i;:::-;24198:7;24207:96;24246:15;24207:96;;;;;;;;;;;;;;;;;:11;:25;24219:12;:10;:12::i;:::-;-1:-1:-1;;;;;24207:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;24207:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;33559:72::-;;;-1:-1:-1;;;;;33559:72:0;;:::o;37167:546::-;37229:10;37241:42;35241:32;35267:5;35241:25;:32::i;:::-;-1:-1:-1;;;;;35197:41:0;;;;;;:34;:41;;;;;:76;35314:37;:35;:37::i;:::-;35284:27;:67;-1:-1:-1;;;;;35366:21:0;;;35362:249;;35454:33;35472:7;35481:5;35454:17;:33::i;:::-;-1:-1:-1;;;;;35404:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;:83;;;;35558:34;:41;;;;;;35502:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;35362:249;37313:4:::1;37304:6;:13;37296:41;;;;-1:-1:-1::0;;;37296:41:0::1;;;;;;;:::i;:::-;37354:21;37364:10;37354:9;:21::i;:::-;:26:::0;:69;::::1;;;-1:-1:-1::0;37412:10:0::1;37385:38;::::0;;;:26:::1;:38;::::0;;;;;::::1;;37384:39;37354:69;37350:209;;;37467:10;37440:38;::::0;;;:26:::1;:38;::::0;;;;:45;;-1:-1:-1;;37440:45:0::1;37481:4;37440:45:::0;;::::1;::::0;;;37500:30:::1;:47:::0;;;;::::1;::::0;;;;;;::::1;::::0;;-1:-1:-1;;;;;;37500:47:0::1;::::0;;::::1;::::0;;37350:209:::1;37571:25;37577:10;37589:6;37571:5;:25::i;:::-;37607:4;::::0;:56:::1;::::0;-1:-1:-1;;;;;37607:4:0::1;37629:10;37649:4;37656:6:::0;37607:21:::1;:56::i;:::-;37686:10;-1:-1:-1::0;;;;;37679:26:0::1;;37698:6;37679:26;;;;;;:::i;:::-;;;;;;;;37167:546:::0;;;:::o;21427:175::-;21513:4;21530:42;21540:12;:10;:12::i;:::-;21554:9;21565:6;21530:9;:42::i;40585:229::-;40649:6;40645:162;40664:30;:37;40661:40;;40645:162;;;40722:73;40740:30;40771:1;40740:33;;;;;;;40722:73;40703:3;;40645:162;;33399:72;;;-1:-1:-1;;;;;33399:72:0;;:::o;33717:70::-;;;-1:-1:-1;;;;;33717:70:0;;:::o;40822:231::-;40888:6;40884:162;40903:30;:37;40900:40;;40884:162;;;40961:73;40979:30;41010:1;40979:33;;;;;;;40961:73;40942:3;;40884:162;;45544:166;45656:45;;;;:38;:45;;;;;;;;;45648:54;;;;;;;;;;;;;;;;;45619:16;;45648:54;;;45656:45;45648:54;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45648:54:0;;;;;;;;;;;;;;;;;;;;;;;45544:166;;;:::o;33478:74::-;;;-1:-1:-1;;;;;33478:74:0;;:::o;32614:58::-;;;;;;;;;;;;;;;:::o;44385:278::-;44468:6;44464:192;44483:45;;;;:38;:45;;;;;:52;44480:55;;44464:192;;;44574:45;;;;:38;:45;;;;;:48;;44556:88;;44574:45;44620:1;;44574:48;;;;;44556:88;44537:3;;44464:192;;34291:210;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34383:31:0;::::1;34375:65;;;;-1:-1:-1::0;;;34375:65:0::1;;;;;;;:::i;:::-;34453:16;:40:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;34453:40:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;34453:40:0::1;-1:-1:-1::0;;;;;34453:40:0;;;::::1;::::0;;;::::1;::::0;;34291:210::o;34887:136::-;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;34995:19:::1;::::0;34975:40:::1;::::0;:15:::1;::::0;:19:::1;:40::i;:::-;34948:24;:67:::0;34887:136::o;33321:71::-;;;-1:-1:-1;;;;;33321:71:0;;:::o;21665:151::-;-1:-1:-1;;;;;21781:18:0;;;21754:7;21781:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21665:151::o;45265:130::-;45349:30;:37;45265:130;:::o;38530:95::-;38564:31;38573:21;38583:10;38573:9;:21::i;38564:31::-;38606:11;:9;:11::i;41543:231::-;41609:6;41605:162;41624:30;:37;41621:40;;41605:162;;;41682:73;41700:30;41731:1;41700:33;;;;;;;41682:73;41663:3;;41605:162;;15904:244;15181:12;:10;:12::i;:::-;15171:6;;;;;-1:-1:-1;;;;;15171:6:0;;;:22;;;15163:67;;;;-1:-1:-1;;;15163:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15993:22:0;::::1;15985:73;;;;-1:-1:-1::0;;;15985:73:0::1;;;;;;;:::i;:::-;16095:6;::::0;16074:38:::1;::::0;-1:-1:-1;;;;;16074:38:0;;::::1;::::0;16095:6:::1;::::0;::::1;;::::0;16074:38:::1;::::0;;;::::1;16123:6;:17:::0;;-1:-1:-1;;;;;16123:17:0;;::::1;;;-1:-1:-1::0;;;;;;16123:17:0;;::::1;::::0;;;::::1;::::0;;15904:244::o;13512:106::-;13600:10;13512:106;:::o;27212:346::-;-1:-1:-1;;;;;27314:19:0;;27306:68;;;;-1:-1:-1;;;27306:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27393:21:0;;27385:68;;;;-1:-1:-1;;;27385:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;27518:32;;;;;27496:6;;27518:32;:::i;:::-;;;;;;;;27212:346;;;:::o;885:106::-;943:7;974:1;970;:5;:13;;982:1;970:13;;;-1:-1:-1;978:1:0;;885:106;-1:-1:-1;885:106:0:o;24824:539::-;-1:-1:-1;;;;;24930:20:0;;24922:70;;;;-1:-1:-1;;;24922:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25011:23:0;;25003:71;;;;-1:-1:-1;;;25003:71:0;;;;;;;:::i;:::-;25087:47;25108:6;25116:9;25127:6;25087:20;:47::i;:::-;25167:71;25189:6;25167:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25167:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;25147:17:0;;;:9;:17;;;;;;;;;;;:91;;;;25272:20;;;;;;;:32;;25297:6;25272:24;:32::i;:::-;-1:-1:-1;;;;;25249:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;25320:35;;;;;;;;;;25348:6;;25320:35;:::i;9320:192::-;9406:7;9442:12;9434:6;;;;9426:29;;;;-1:-1:-1;;;9426:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;9478:5:0;;;9320:192::o;8881:136::-;8939:7;8966:43;8970:1;8973;8966:43;;;;;;;;;;;;;;;;;:3;:43::i;26356:418::-;-1:-1:-1;;;;;26440:21:0;;26432:67;;;;-1:-1:-1;;;26432:67:0;;;;;;;:::i;:::-;26512:49;26533:7;26550:1;26554:6;26512:20;:49::i;:::-;26595:68;26618:6;26595:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26595:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;26574:18:0;;:9;:18;;;;;;;;;;:89;26689:12;;:24;;26706:6;26689:16;:24::i;:::-;26674:12;:39;26729:37;;26755:1;;-1:-1:-1;;;;;26729:37:0;;;;;;;26759:6;;26729:37;:::i;:::-;;;;;;;;26356:418;;:::o;28801:177::-;28884:86;28904:5;28934:23;;;28959:2;28963:5;28911:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;28911:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;28911:58:0;-1:-1:-1;;;;;;28911:58:0;;;;;;;;;;28884:19;:86::i;9771:471::-;9829:7;10074:6;10070:47;;-1:-1:-1;10104:1:0;10097:8;;10070:47;10141:5;;;10145:1;10141;:5;:1;10165:5;;;;;:10;10157:56;;;;-1:-1:-1;;;10157:56:0;;;;;;;:::i;10718:132::-;10776:7;10803:39;10807:1;10810;10803:39;;;;;;;;;;;;;;;;;:3;:39::i;8417:181::-;8475:7;8507:5;;;8531:6;;;;8523:46;;;;-1:-1:-1;;;8523:46:0;;;;;;;:::i;35638:515::-;35776:32;35802:5;35776:25;:32::i;:::-;-1:-1:-1;;;;;35732:41:0;;;;;;:34;:41;;;;;:76;35849:37;:35;:37::i;:::-;35819:27;:67;-1:-1:-1;;;;;35901:21:0;;;35897:249;;35989:33;36007:7;36016:5;35989:17;:33::i;:::-;-1:-1:-1;;;;;35939:40:0;;;;;;;:31;:40;;;;;;;;:47;;;;;;;;;;;;;:83;;;;36093:34;:41;;;;;;36037:46;;;:37;:46;;;;;:53;;;;;;;;;;:97;35638:515::o;25645:378::-;-1:-1:-1;;;;;25729:21:0;;25721:65;;;;-1:-1:-1;;;25721:65:0;;;;;;;:::i;:::-;25799:49;25828:1;25832:7;25841:6;25799:20;:49::i;:::-;25876:12;;:24;;25893:6;25876:16;:24::i;:::-;25861:12;:39;-1:-1:-1;;;;;25932:18:0;;:9;:18;;;;;;;;;;;:30;;25955:6;25932:22;:30::i;:::-;-1:-1:-1;;;;;25911:18:0;;:9;:18;;;;;;;;;;;:51;;;;25978:37;;25911:18;;:9;25978:37;;;;26008:6;;25978:37;:::i;28986:205::-;29087:96;29107:5;29137:27;;;29166:4;29172:2;29176:5;29114:68;;;;;;;;;;:::i;31106:761::-;31530:23;31556:69;31584:4;31556:69;;;;;;;;;;;;;;;;;31564:5;-1:-1:-1;;;;;31556:27:0;;;:69;;;;;:::i;:::-;31640:17;;31530:95;;-1:-1:-1;31640:21:0;31636:224;;31782:10;31771:30;;;;;;;;;;;;:::i;:::-;31763:85;;;;-1:-1:-1;;;31763:85:0;;;;;;;:::i;11346:278::-;11432:7;11467:12;11460:5;11452:28;;;;-1:-1:-1;;;11452:28:0;;;;;;;;:::i;:::-;;11491:9;11507:1;11503;:5;;;;;;;11346:278;-1:-1:-1;;;;;11346:278:0:o;5133:196::-;5236:12;5268:53;5291:6;5299:4;5305:1;5308:12;5268:22;:53::i;:::-;5261:60;5133:196;-1:-1:-1;;;;5133:196:0:o;6510:979::-;6640:12;6673:18;6684:6;6673:10;:18::i;:::-;6665:60;;;;-1:-1:-1;;;6665:60:0;;;;;;;:::i;:::-;6799:12;6813:23;6840:6;-1:-1:-1;;;;;6840:11:0;6860:8;6871:4;6840:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6798:78;;;;6891:7;6887:595;;;6922:10;-1:-1:-1;6915:17:0;;-1:-1:-1;6915:17:0;6887:595;7036:17;;:21;7032:439;;7299:10;7293:17;7360:15;7347:10;7343:2;7339:19;7332:44;7247:148;7442:12;7435:20;;-1:-1:-1;;;7435:20:0;;;;;;;;:::i;2018:619::-;2078:4;2546:20;;2389:66;2586:23;;;;;;:42;;-1:-1:-1;;2613:15:0;;;2578:51;-1:-1:-1;;2018:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;5:130;72:20;;-1:-1;;;;;22404:54;;23363:35;;23353:2;;23412:1;;23402:12;555:241;;659:2;647:9;638:7;634:23;630:32;627:2;;;-1:-1;;665:12;627:2;727:53;772:7;748:22;727:53;:::i;803:366::-;;;924:2;912:9;903:7;899:23;895:32;892:2;;;-1:-1;;930:12;892:2;992:53;1037:7;1013:22;992:53;:::i;:::-;982:63;;1100:53;1145:7;1082:2;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;886:283;;;;;:::o;1176:491::-;;;;1314:2;1302:9;1293:7;1289:23;1285:32;1282:2;;;-1:-1;;1320:12;1282:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;1372:63;-1:-1;1472:2;1511:22;;72:20;97:33;72:20;97:33;:::i;:::-;1276:391;;1480:63;;-1:-1;;;1580:2;1619:22;;;;344:20;;1276:391::o;1674:366::-;;;1795:2;1783:9;1774:7;1770:23;1766:32;1763:2;;;-1:-1;;1801:12;1763:2;1863:53;1908:7;1884:22;1863:53;:::i;:::-;1853:63;1953:2;1992:22;;;;344:20;;-1:-1;;;1757:283::o;2047:257::-;;2159:2;2147:9;2138:7;2134:23;2130:32;2127:2;;;-1:-1;;2165:12;2127:2;223:6;217:13;23509:5;22316:13;22309:21;23487:5;23484:32;23474:2;;-1:-1;;23520:12;2311:241;;2415:2;2403:9;2394:7;2390:23;2386:32;2383:2;;;-1:-1;;2421:12;2383:2;-1:-1;344:20;;2377:175;-1:-1;2377:175::o;2559:263::-;;2674:2;2662:9;2653:7;2649:23;2645:32;2642:2;;;-1:-1;;2680:12;2642:2;-1:-1;492:13;;2636:186;-1:-1;2636:186::o;2829:366::-;;;2950:2;2938:9;2929:7;2925:23;2921:32;2918:2;;;-1:-1;;2956:12;2918:2;-1:-1;;344:20;;;3108:2;3147:22;;;344:20;;-1:-1;2912:283::o;11282:271::-;;4614:5;21227:12;4725:52;4770:6;4765:3;4758:4;4751:5;4747:16;4725:52;:::i;:::-;4789:16;;;;;11416:137;-1:-1;;11416:137::o;11560:222::-;-1:-1;;;;;22404:54;;;;3445:37;;11687:2;11672:18;;11658:124::o;11789:444::-;-1:-1;;;;;22404:54;;;3445:37;;22404:54;;;;12136:2;12121:18;;3445:37;12219:2;12204:18;;11119:37;;;;11972:2;11957:18;;11943:290::o;12240:333::-;-1:-1;;;;;22404:54;;;;3445:37;;12559:2;12544:18;;11119:37;12395:2;12380:18;;12366:207::o;12580:370::-;12757:2;12771:47;;;21227:12;;12742:18;;;21759:19;;;12580:370;;12757:2;21081:14;;;;21799;;;;12580:370;4053:260;4078:6;4075:1;4072:13;4053:260;;;4139:13;;-1:-1;;;;;22404:54;3445:37;;21614:14;;;;3356;;;;22415:42;4093:9;4053:260;;;-1:-1;12824:116;;12728:222;-1:-1;;;;;;12728:222::o;12957:210::-;22316:13;;22309:21;4408:34;;13078:2;13063:18;;13049:118::o;13431:310::-;;13578:2;13599:17;13592:47;5123:5;21227:12;21771:6;13578:2;13567:9;13563:18;21759:19;5217:52;5262:6;21799:14;13567:9;21799:14;13578:2;5243:5;5239:16;5217:52;:::i;:::-;23283:7;23267:14;-1:-1;;23263:28;5281:39;;;;21799:14;5281:39;;13549:192;-1:-1;;13549:192::o;13748:416::-;13948:2;13962:47;;;5557:2;13933:18;;;21759:19;5593:34;21799:14;;;5573:55;-1:-1;;;5648:12;;;5641:27;5687:12;;;13919:245::o;14171:416::-;14371:2;14385:47;;;5938:2;14356:18;;;21759:19;5974:34;21799:14;;;5954:55;-1:-1;;;6029:12;;;6022:30;6071:12;;;14342:245::o;14594:416::-;14794:2;14808:47;;;6322:2;14779:18;;;21759:19;6358:34;21799:14;;;6338:55;-1:-1;;;6413:12;;;6406:26;6451:12;;;14765:245::o;15017:416::-;15217:2;15231:47;;;6702:2;15202:18;;;21759:19;-1:-1;;;21799:14;;;6718:38;6775:12;;;15188:245::o;15440:416::-;15640:2;15654:47;;;7026:2;15625:18;;;21759:19;7062:29;21799:14;;;7042:50;7111:12;;;15611:245::o;15863:416::-;16063:2;16077:47;;;7362:2;16048:18;;;21759:19;-1:-1;;;21799:14;;;7378:44;7441:12;;;16034:245::o;16286:416::-;16486:2;16500:47;;;7692:2;16471:18;;;21759:19;-1:-1;;;21799:14;;;7708:40;7767:12;;;16457:245::o;16709:416::-;16909:2;16923:47;;;8018:2;16894:18;;;21759:19;8054:34;21799:14;;;8034:55;-1:-1;;;8109:12;;;8102:25;8146:12;;;16880:245::o;17132:416::-;17332:2;17346:47;;;17317:18;;;21759:19;8433:34;21799:14;;;8413:55;8487:12;;;17303:245::o;17555:416::-;17755:2;17769:47;;;8738:2;17740:18;;;21759:19;-1:-1;;;21799:14;;;8754:39;8812:12;;;17726:245::o;17978:416::-;18178:2;18192:47;;;9063:2;18163:18;;;21759:19;9099:34;21799:14;;;9079:55;-1:-1;;;9154:12;;;9147:25;9191:12;;;18149:245::o;18401:416::-;18601:2;18615:47;;;9442:2;18586:18;;;21759:19;9478:34;21799:14;;;9458:55;-1:-1;;;9533:12;;;9526:29;9574:12;;;18572:245::o;18824:416::-;19024:2;19038:47;;;9825:2;19009:18;;;21759:19;9861:34;21799:14;;;9841:55;-1:-1;;;9916:12;;;9909:28;9956:12;;;18995:245::o;19247:416::-;19447:2;19461:47;;;10207:2;19432:18;;;21759:19;10243:31;21799:14;;;10223:52;10294:12;;;19418:245::o;19670:416::-;19870:2;19884:47;;;10545:2;19855:18;;;21759:19;10581:34;21799:14;;;10561:55;-1:-1;;;10636:12;;;10629:34;10682:12;;;19841:245::o;20093:416::-;20293:2;20307:47;;;10933:2;20278:18;;;21759:19;10969:33;21799:14;;;10949:54;11022:12;;;20264:245::o;20516:222::-;11119:37;;;20643:2;20628:18;;20614:124::o;20745:214::-;22620:4;22609:16;;;;11235:35;;20868:2;20853:18;;20839:120::o;22923:268::-;22988:1;22995:101;23009:6;23006:1;23003:13;22995:101;;;23076:11;;;23070:18;23057:11;;;23050:39;23031:2;23024:10;22995:101;;;23111:6;23108:1;23105:13;23102:2;;;-1:-1;;22988:1;23158:16;;23151:27;22972:219::o;23304:117::-;-1:-1;;;;;22404:54;;23363:35;;23353:2;;23412:1;;23402:12

Swarm Source

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