ETH Price: $2,791.75 (+6.36%)

Token

Tornado.Cash Voucher (vTORN)
 

Overview

Max Total Supply

143,831.157592566707957322 vTORN

Holders

2,179 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
21.217638551264247059 vTORN

Value
$0.00
0x65c2698f4a2d5883d9ae6d22e4cb633d5371ce9d
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:
Voucher

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
* This voucher token can be redeemed 1:1 for TORN token at https://app.tornado.cash/airdrop
*
* d888888P                                           dP              a88888b.                   dP
*    88                                              88             d8'   `88                   88
*    88    .d8888b. 88d888b. 88d888b. .d8888b. .d888b88 .d8888b.    88        .d8888b. .d8888b. 88d888b.
*    88    88'  `88 88'  `88 88'  `88 88'  `88 88'  `88 88'  `88    88        88'  `88 Y8ooooo. 88'  `88
*    88    88.  .88 88       88    88 88.  .88 88.  .88 88.  .88 dP Y8.   .88 88.  .88       88 88    88
*    dP    `88888P' dP       dP    dP `88888P8 `88888P8 `88888P' 88  Y88888P' `88888P8 `88888P' dP    dP
* ooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;

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

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

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

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

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

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

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

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

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

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

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

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;
    using Address for address;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(sender, recipient, amount);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ENS.sol

interface ENS {
  function resolver(bytes32 node) external view returns (Resolver);
}

interface Resolver {
  function addr(bytes32 node) external view returns (address);
}

contract EnsResolve {
  function resolve(bytes32 node) public view virtual returns (address) {
    ENS Registry = ENS(
      getChainId() == 1 ? 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e : 0x8595bFb0D940DfEDC98943FA8a907091203f25EE
    );
    return Registry.resolver(node).addr(node);
  }

  function bulkResolve(bytes32[] memory domains) public view returns (address[] memory result) {
    result = new address[](domains.length);
    for (uint256 i = 0; i < domains.length; i++) {
      result[i] = resolve(domains[i]);
    }
  }

  function getChainId() internal pure returns (uint256) {
    uint256 chainId;
    assembly {
      chainId := chainid()
    }
    return chainId;
  }
}

// File: contracts/Voucher.sol

/**
 * This is tornado.cash airdrop for early adopters. In order to claim your TORN token please follow https://tornado.cash/airdrop
 */

contract Voucher is ERC20("TornadoCash voucher for early adopters", "vTORN"), EnsResolve {
  using SafeERC20 for IERC20;

  IERC20 public immutable torn;
  uint256 public immutable expiresAt;
  address public immutable governance;
  mapping(address => bool) public allowedTransferee;

  struct Recipient {
    address to;
    uint256 amount;
  }

  constructor(
    bytes32 _torn,
    bytes32 _governance,
    uint256 _duration,
    Recipient[] memory _airdrops
  ) public {
    torn = IERC20(resolve(_torn));
    governance = resolve(_governance);
    expiresAt = blockTimestamp().add(_duration);
    for (uint256 i = 0; i < _airdrops.length; i++) {
      _mint(_airdrops[i].to, _airdrops[i].amount);
      allowedTransferee[_airdrops[i].to] = true;
    }
  }

  function redeem() external {
    require(blockTimestamp() < expiresAt, "Airdrop redeem period has ended");
    uint256 amount = balanceOf(msg.sender);
    _burn(msg.sender, amount);
    torn.safeTransfer(msg.sender, amount);
  }

  function rescueExpiredTokens() external {
    require(blockTimestamp() >= expiresAt, "Airdrop redeem period has not ended yet");
    torn.safeTransfer(governance, torn.balanceOf(address(this)));
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 amount
  ) internal override {
    super._beforeTokenTransfer(from, to, amount);
    require(to == address(0) || from == address(0) || allowedTransferee[from], "ERC20: transfer is not allowed");
  }

  function blockTimestamp() public view virtual returns (uint256) {
    return block.timestamp;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"_torn","type":"bytes32"},{"internalType":"bytes32","name":"_governance","type":"bytes32"},{"internalType":"uint256","name":"_duration","type":"uint256"},{"components":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"internalType":"struct Voucher.Recipient[]","name":"_airdrops","type":"tuple[]"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowedTransferee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"domains","type":"bytes32[]"}],"name":"bulkResolve","outputs":[{"internalType":"address[]","name":"result","type":"address[]"}],"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":"expiresAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governance","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueExpiredTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"node","type":"bytes32"}],"name":"resolve","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"torn","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"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"}]

60e06040523480156200001157600080fd5b5060405162001dd438038062001dd4833981016040819052620000349162000593565b60405180606001604052806026815260200162001dae60269139604051806040016040528060058152602001643b2a27a92760d91b81525081600390805190602001906200008492919062000497565b5080516200009a90600490602084019062000497565b50506005805460ff1916601217905550620000b584620001af565b60601b6001600160601b031916608052620000d083620001af565b60601b6001600160601b03191660c0526200010382620000ef620002fd565b6200030160201b6200098d1790919060201c565b60a05260005b8151811015620001a457620001558282815181106200012457fe5b6020026020010151600001518383815181106200013d57fe5b6020026020010151602001516200033260201b60201c565b6001600660008484815181106200016857fe5b602090810291909101810151516001600160a01b03168252810191909152604001600020805460ff191691151591909117905560010162000109565b505050505062000767565b600080620001bc62000415565b600114620001df57738595bfb0d940dfedc98943fa8a907091203f25ee620001f0565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf906200022190869060040162000659565b60206040518083038186803b1580156200023a57600080fd5b505afa1580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000275919062000574565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b8152600401620002a2919062000659565b60206040518083038186803b158015620002bb57600080fd5b505afa158015620002d0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f6919062000574565b9392505050565b4290565b600082820183811015620002f65760405162461bcd60e51b8152600401620003299062000662565b60405180910390fd5b6001600160a01b0382166200035b5760405162461bcd60e51b81526004016200032990620006d0565b620003696000838362000419565b62000385816002546200030160201b6200098d1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620003b89183906200098d62000301821b17901c565b6001600160a01b0383166000818152602081905260408082209390935591519091907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200040990859062000659565b60405180910390a35050565b4690565b620004318383836200049260201b620009b21760201c565b6001600160a01b03821615806200044f57506001600160a01b038316155b806200047357506001600160a01b03831660009081526006602052604090205460ff165b620004925760405162461bcd60e51b8152600401620003299062000699565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004da57805160ff19168380011785556200050a565b828001600101855582156200050a579182015b828111156200050a578251825591602001919060010190620004ed565b50620005189291506200051c565b5090565b5b808211156200051857600081556001016200051d565b60006040828403121562000545578081fd5b62000551604062000707565b9050815162000560816200074e565b808252506020820151602082015292915050565b60006020828403121562000586578081fd5b8151620002f6816200074e565b60008060008060808587031215620005a9578283fd5b8451935060208086015193506040808701519350606087015160018060401b03811115620005d5578384fd5b8701601f81018913620005e6578384fd5b8051620005fd620005f7826200072e565b62000707565b81815284810190838601858402850187018d10156200061a578788fd5b8794505b838510156200064857620006338d8262000533565b8352600194909401939186019185016200061e565b50989b979a50959850505050505050565b90815260200190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601e908201527f45524332303a207472616e73666572206973206e6f7420616c6c6f7765640000604082015260600190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b6040518181016001600160401b03811182821017156200072657600080fd5b604052919050565b60006001600160401b0382111562000744578081fd5b5060209081020190565b6001600160a01b03811681146200076457600080fd5b50565b60805160601c60a05160c05160601c6115f6620007b86000398061043152806107d35250806105c352806106ec52806107895250806106c8528061075d52806107f4528061089852506115f66000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638622a689116100ad578063adf898a411610071578063adf898a41461024b578063be040fb014610253578063c39ef8551461025d578063dd62ed3e14610265578063f9e54234146102785761012c565b80638622a6891461020d57806395d89b4114610215578063a457c2d71461021d578063a9059cbb14610230578063adb61832146102435761012c565b806339509351116100f457806339509351146101ac5780635aa6e675146101bf5780635c23bdf5146101d45780635d4545a0146101e757806370a08231146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b610139610298565b60405161014691906111a2565b60405180910390f35b61016261015d366004610fe8565b61032e565b604051610146919061118e565b61017761034b565b6040516101469190611199565b610162610192366004610fa8565b610351565b61019f6103d8565b6040516101469190611491565b6101626101ba366004610fe8565b6103e1565b6101c761042f565b6040516101469190611114565b6101c76101e23660046110c8565b610453565b6101626101f5366004610f38565b610591565b610177610208366004610f38565b6105a6565b6101776105c1565b6101396105e5565b61016261022b366004610fe8565b610646565b61016261023e366004610fe8565b6106ae565b6101776106c2565b6101c76106c6565b61025b6106ea565b005b61025b610787565b610177610273366004610f70565b6108c1565b61028b610286366004611013565b6108ec565b6040516101469190611141565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b600061034261033b6109b7565b84846109bb565b50600192915050565b60025490565b600061035e848484610a6f565b6103ce8461036a6109b7565b6103c985604051806060016040528060288152602001611574602891396001600160a01b038a166000908152600160205260408120906103a86109b7565b6001600160a01b031681526020810191909152604001600020549190610b84565b6109bb565b5060019392505050565b60055460ff1690565b60006103426103ee6109b7565b846103c985600160006103ff6109b7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061098d565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061045e610bb0565b60011461047f57738595bfb0d940dfedc98943fa8a907091203f25ee610490565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf906104bf908690600401611199565b60206040518083038186803b1580156104d757600080fd5b505afa1580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610f54565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b815260040161053a9190611199565b60206040518083038186803b15801561055257600080fd5b505afa158015610566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058a9190610f54565b9392505050565b60066020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b7f000000000000000000000000000000000000000000000000000000000000000081565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103245780601f106102f957610100808354040283529160200191610324565b60006103426106536109b7565b846103c98560405180606001604052806025815260200161159c602591396001600061067d6109b7565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610b84565b60006103426106bb6109b7565b8484610a6f565b4290565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f00000000000000000000000000000000000000000000000000000000000000006107136106c2565b106107395760405162461bcd60e51b815260040161073090611291565b60405180910390fd5b6000610744336105a6565b90506107503382610bb4565b6107846001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163383610c96565b50565b7f00000000000000000000000000000000000000000000000000000000000000006107b06106c2565b10156107ce5760405162461bcd60e51b8152600401610730906112c8565b6108bf7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161083e9190611114565b60206040518083038186803b15801561085657600080fd5b505afa15801561086a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088e91906110e0565b6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169190610c96565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060815167ffffffffffffffff8111801561090657600080fd5b50604051908082528060200260200182016040528015610930578160200160208202803683370190505b50905060005b82518110156109875761095b83828151811061094e57fe5b6020026020010151610453565b82828151811061096757fe5b6001600160a01b0390921660209283029190910190910152600101610936565b50919050565b60008282018381101561058a5760405162461bcd60e51b81526004016107309061125a565b505050565b3390565b6001600160a01b0383166109e15760405162461bcd60e51b8152600401610730906113cc565b6001600160a01b038216610a075760405162461bcd60e51b815260040161073090611218565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a62908590611199565b60405180910390a3505050565b6001600160a01b038316610a955760405162461bcd60e51b815260040161073090611387565b6001600160a01b038216610abb5760405162461bcd60e51b8152600401610730906111d5565b610ac6838383610cec565b610b038160405180606001604052806026815260200161154e602691396001600160a01b0386166000908152602081905260409020549190610b84565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b32908261098d565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a62908590611199565b60008184841115610ba85760405162461bcd60e51b815260040161073091906111a2565b505050900390565b4690565b6001600160a01b038216610bda5760405162461bcd60e51b815260040161073090611346565b610be682600083610cec565b610c238160405180606001604052806022815260200161152c602291396001600160a01b0385166000908152602081905260409020549190610b84565b6001600160a01b038316600090815260208190526040902055600254610c499082610d53565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c8a908590611199565b60405180910390a35050565b6109b28363a9059cbb60e01b8484604051602401610cb5929190611128565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610d95565b610cf78383836109b2565b6001600160a01b0382161580610d1457506001600160a01b038316155b80610d3757506001600160a01b03831660009081526006602052604090205460ff165b6109b25760405162461bcd60e51b81526004016107309061130f565b600061058a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b84565b6060610dea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e249092919063ffffffff16565b8051909150156109b25780806020019051810190610e0891906110a8565b6109b25760405162461bcd60e51b815260040161073090611447565b6060610e338484600085610e3b565b949350505050565b6060610e4685610eff565b610e625760405162461bcd60e51b815260040161073090611410565b60006060866001600160a01b03168587604051610e7f91906110f8565b60006040518083038185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b50915091508115610ed5579150610e339050565b805115610ee55780518082602001fd5b8360405162461bcd60e51b815260040161073091906111a2565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610e33575050151592915050565b600060208284031215610f49578081fd5b813561058a81611516565b600060208284031215610f65578081fd5b815161058a81611516565b60008060408385031215610f82578081fd5b8235610f8d81611516565b91506020830135610f9d81611516565b809150509250929050565b600080600060608486031215610fbc578081fd5b8335610fc781611516565b92506020840135610fd781611516565b929592945050506040919091013590565b60008060408385031215610ffa578182fd5b823561100581611516565b946020939093013593505050565b60006020808385031215611025578182fd5b823567ffffffffffffffff81111561103b578283fd5b8301601f8101851361104b578283fd5b803561105e611059826114c6565b61149f565b818152838101908385018584028501860189101561107a578687fd5b8694505b8385101561109c57803583526001949094019391850191850161107e565b50979650505050505050565b6000602082840312156110b9578081fd5b8151801515811461058a578182fd5b6000602082840312156110d9578081fd5b5035919050565b6000602082840312156110f1578081fd5b5051919050565b6000825161110a8184602087016114e6565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156111825783516001600160a01b03168352928401929184019160010161115d565b50909695505050505050565b901515815260200190565b90815260200190565b60006020825282518060208401526111c18160408501602087016114e6565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f41697264726f702072656465656d20706572696f642068617320656e64656400604082015260600190565b60208082526027908201527f41697264726f702072656465656d20706572696f6420686173206e6f7420656e604082015266191959081e595d60ca1b606082015260800190565b6020808252601e908201527f45524332303a207472616e73666572206973206e6f7420616c6c6f7765640000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60ff91909116815260200190565b60405181810167ffffffffffffffff811182821017156114be57600080fd5b604052919050565b600067ffffffffffffffff8211156114dc578081fd5b5060209081020190565b60005b838110156115015781810151838201526020016114e9565b83811115611510576000848401525b50505050565b6001600160a01b038116811461078457600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122074dec9cb778d508d2d30bca68a0c1721bd0136f35f249b63ee628c4b3aafc78564736f6c634300060c0033546f726e61646f4361736820766f756368657220666f72206561726c792061646f707465727379a75ab558b53fdc478d1b223d669e6f5f650ce9b7e9cdd6ae9bd9f0917b552d94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd0000000000000000000000000000000000000000000000000000000001da9c000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000005ba1b71a573b5d161a6d31781bc8d7325741dd2f0000000000000000000000000000000000000000000006c218c011288191f43c000000000000000000000000689738c753a76be0d708cf5e23cc4a69348c58930000000000000000000000000000000000000000000007336225efb03a0f82f1000000000000000000000000ff2ac56268e21cfac092bc12d37128710118feca0000000000000000000000000000000000000000000007a6ea7b83937abc76be0000000000000000000000007fd01da51d2691ff2d3de0389b89416a33719d4d00000000000000000000000000000000000000000000086e9fc7106e5da238fd00000000000000000000000048c92ebd9c8b4d1cacafe145a2563a86a17c9a620000000000000000000000000000000000000000000004fb6c1c9a8d806d4e070000000000000000000000005faadcaf6dab966f9614c7f135115d4acd700b3600000000000000000000000000000000000000000000040955e0843ca0fd7d8f000000000000000000000000a648140c57ecda7500ae7b1ffc233b2b8d5f324a0000000000000000000000000000000000000000000002980489cacf9ea8aac30000000000000000000000000218265a92227cffa7446577f2b5b63eab2b491800000000000000000000000000000000000000000000027903bde159b71cf0bc0000000000000000000000004e5baa0869b63a64bd01e6baefdca13f0e439f2f0000000000000000000000000000000000000000000001fa8cd302fa292d1783000000000000000000000000dc7a2bd77f095b14058e0026b68e7046621039e6000000000000000000000000000000000000000000000257066b2cbe4cce870b0000000000000000000000006a6c08a8a34c5a669487a634869b6627a50ac38b000000000000000000000000000000000000000000000137d7fbb86dca676835000000000000000000000000c77bba6ec0e42be8e7705c0124567e22d8507df400000000000000000000000000000000000000000000016b13e1526d8f509cf60000000000000000000000003cd177e751703e516c8e4b8697e5316e7f407262000000000000000000000000000000000000000000000156c99c511cf806f4490000000000000000000000000c88f1dc385c292d92465177a955bba3cc03148b0000000000000000000000000000000000000000000000b68b98cc08f990d247000000000000000000000000e76d853aee03978175158c1dd2ebb342782ac46700000000000000000000000000000000000000000000013de1212718002b98b2000000000000000000000000187c00667fd1e0293e299cc04ba3e980f33bb5c10000000000000000000000000000000000000000000008b294a0c6201cceb8ff0000000000000000000000002008d19d5bad368a577271ee43873349b1fb7bed00000000000000000000000000000000000000000000058d88a22d6d2cf16f620000000000000000000000004545957f1c17a9a2524cd39baf460768ef7764ac00000000000000000000000000000000000000000000039d391182b3bcb1ff5000000000000000000000000079bb544418b697709c29240d706dfdfc5f8596f7000000000000000000000000000000000000000000000336116e8887e326359700000000000000000000000075a89e145de32ac6e2b9730b709920c2bb26f73c0000000000000000000000000000000000000000000002864ea1675c1baae0df000000000000000000000000fa33679322becbee27f550c250c6572ddc0d3f6e000000000000000000000000000000000000000000000214798e47cd49a263d30000000000000000000000005b0ec28dce1272679d3d85d76d48adf8b4654d4d00000000000000000000000000000000000000000000014a47952c014328d9a4000000000000000000000000502553c9e8eece231e4c0878b02dc9b7bbb089a50000000000000000000000000000000000000000000000c39e30a2d4db1f169000000000000000000000000084ce69f169b79a43da5707b0a99f2d3f2d85f5480000000000000000000000000000000000000000000002aea0f3226585262ef00000000000000000000000001899b35c58f48ffa4c6d346db17f390f804abd0f0000000000000000000000000000000000000000000005a32dbd8a390d831f0d0000000000000000000000004e80731bf9e38e715582f58eda575364a6eab6ae0000000000000000000000000000000000000000000003e00dab1427ad4e04fe000000000000000000000000e483a86457a0b1673ed47b148e354368c3bd37040000000000000000000000000000000000000000000000b5e0a70d09896bf316000000000000000000000000c051f5345880aaaca4719f0a23c5a2a8661b332b000000000000000000000000000000000000000000000181fdd4b54231edb8d10000000000000000000000006310222e953556de7222dd38f9deb581d136f94e00000000000000000000000000000000000000000000013dacb3118cc48e5eba000000000000000000000000d863cd60d5148794c29854a48c5a7daddcb5f247000000000000000000000000000000000000000000000148cf0abef2a4b8ce71000000000000000000000000d3bd78f780fd5b372d18f07ef10e72f6c7c08af00000000000000000000000000000000000000000000001415708dce3a124d2240000000000000000000000003a2b681fc25e8ef711b98c363ea4cce168a3f83d0000000000000000000000000000000000000000000000f91780d9ed3c2a41c10000000000000000000000005199c4ef0529bcaccd38a122590efecf458209d40000000000000000000000000000000000000000000000ab11a3b2d650383ceb0000000000000000000000009fc2d705544754aee127bae78c73bd32fbb60bbf00000000000000000000000000000000000000000000004e7b2a292062db08ba0000000000000000000000008cddcc061643789cf694fe9925eb7bdb8204c6860000000000000000000000000000000000000000000000381c102a93cf0d44e30000000000000000000000009ade8a20b95124ab686a5d8a81873d6f3b8311ac000000000000000000000000000000000000000000000036e81bb7b8333b82c5000000000000000000000000956ce06aefed4149cf54a14fabe51ff002ae616300000000000000000000000000000000000000000000002e492bcaac2a5b790c0000000000000000000000003db3f6c2b2738d59620115034573e68007e6039c000000000000000000000000000000000000000000000012e5898b076483d9b200000000000000000000000000d99d7214a595a258935ffcbd5ca7475df715790000000000000000000000000000000000000000000000073e1f971ec674a2e4000000000000000000000000695ee818abafbfd104d1083a8b760d96d49479da00000000000000000000000000000000000000000000006b7203645b448cb6b900000000000000000000000084e4313c332a0f1a18f04a042bd1e999f2b8d857000000000000000000000000000000000000000000000148d5fe9bc7433340c7000000000000000000000000d90bc4b8c376823c72da1c1afdd9b4c3b1ff35ca00000000000000000000000000000000000000000000013488605574c25393d0

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638622a689116100ad578063adf898a411610071578063adf898a41461024b578063be040fb014610253578063c39ef8551461025d578063dd62ed3e14610265578063f9e54234146102785761012c565b80638622a6891461020d57806395d89b4114610215578063a457c2d71461021d578063a9059cbb14610230578063adb61832146102435761012c565b806339509351116100f457806339509351146101ac5780635aa6e675146101bf5780635c23bdf5146101d45780635d4545a0146101e757806370a08231146101fa5761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461016f57806323b872dd14610184578063313ce56714610197575b600080fd5b610139610298565b60405161014691906111a2565b60405180910390f35b61016261015d366004610fe8565b61032e565b604051610146919061118e565b61017761034b565b6040516101469190611199565b610162610192366004610fa8565b610351565b61019f6103d8565b6040516101469190611491565b6101626101ba366004610fe8565b6103e1565b6101c761042f565b6040516101469190611114565b6101c76101e23660046110c8565b610453565b6101626101f5366004610f38565b610591565b610177610208366004610f38565b6105a6565b6101776105c1565b6101396105e5565b61016261022b366004610fe8565b610646565b61016261023e366004610fe8565b6106ae565b6101776106c2565b6101c76106c6565b61025b6106ea565b005b61025b610787565b610177610273366004610f70565b6108c1565b61028b610286366004611013565b6108ec565b6040516101469190611141565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103245780601f106102f957610100808354040283529160200191610324565b820191906000526020600020905b81548152906001019060200180831161030757829003601f168201915b5050505050905090565b600061034261033b6109b7565b84846109bb565b50600192915050565b60025490565b600061035e848484610a6f565b6103ce8461036a6109b7565b6103c985604051806060016040528060288152602001611574602891396001600160a01b038a166000908152600160205260408120906103a86109b7565b6001600160a01b031681526020810191909152604001600020549190610b84565b6109bb565b5060019392505050565b60055460ff1690565b60006103426103ee6109b7565b846103c985600160006103ff6109b7565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061098d565b7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce81565b60008061045e610bb0565b60011461047f57738595bfb0d940dfedc98943fa8a907091203f25ee610490565b6e0c2e074ec69a0dfb2997ba6c7d2e1e5b604051630178b8bf60e01b81529091506001600160a01b03821690630178b8bf906104bf908690600401611199565b60206040518083038186803b1580156104d757600080fd5b505afa1580156104eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061050f9190610f54565b6001600160a01b0316633b3b57de846040518263ffffffff1660e01b815260040161053a9190611199565b60206040518083038186803b15801561055257600080fd5b505afa158015610566573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061058a9190610f54565b9392505050565b60066020526000908152604090205460ff1681565b6001600160a01b031660009081526020819052604090205490565b7f0000000000000000000000000000000000000000000000000000000061b6be1381565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103245780601f106102f957610100808354040283529160200191610324565b60006103426106536109b7565b846103c98560405180606001604052806025815260200161159c602591396001600061067d6109b7565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610b84565b60006103426106bb6109b7565b8484610a6f565b4290565b7f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c81565b7f0000000000000000000000000000000000000000000000000000000061b6be136107136106c2565b106107395760405162461bcd60e51b815260040161073090611291565b60405180910390fd5b6000610744336105a6565b90506107503382610bb4565b6107846001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c163383610c96565b50565b7f0000000000000000000000000000000000000000000000000000000061b6be136107b06106c2565b10156107ce5760405162461bcd60e51b8152600401610730906112c8565b6108bf7f0000000000000000000000005efda50f22d34f262c29268506c5fa42cb56a1ce7f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c6001600160a01b03166370a08231306040518263ffffffff1660e01b815260040161083e9190611114565b60206040518083038186803b15801561085657600080fd5b505afa15801561086a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061088e91906110e0565b6001600160a01b037f00000000000000000000000077777feddddffc19ff86db637967013e6c6a116c169190610c96565b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060815167ffffffffffffffff8111801561090657600080fd5b50604051908082528060200260200182016040528015610930578160200160208202803683370190505b50905060005b82518110156109875761095b83828151811061094e57fe5b6020026020010151610453565b82828151811061096757fe5b6001600160a01b0390921660209283029190910190910152600101610936565b50919050565b60008282018381101561058a5760405162461bcd60e51b81526004016107309061125a565b505050565b3390565b6001600160a01b0383166109e15760405162461bcd60e51b8152600401610730906113cc565b6001600160a01b038216610a075760405162461bcd60e51b815260040161073090611218565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610a62908590611199565b60405180910390a3505050565b6001600160a01b038316610a955760405162461bcd60e51b815260040161073090611387565b6001600160a01b038216610abb5760405162461bcd60e51b8152600401610730906111d5565b610ac6838383610cec565b610b038160405180606001604052806026815260200161154e602691396001600160a01b0386166000908152602081905260409020549190610b84565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610b32908261098d565b6001600160a01b0380841660008181526020819052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610a62908590611199565b60008184841115610ba85760405162461bcd60e51b815260040161073091906111a2565b505050900390565b4690565b6001600160a01b038216610bda5760405162461bcd60e51b815260040161073090611346565b610be682600083610cec565b610c238160405180606001604052806022815260200161152c602291396001600160a01b0385166000908152602081905260409020549190610b84565b6001600160a01b038316600090815260208190526040902055600254610c499082610d53565b6002556040516000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610c8a908590611199565b60405180910390a35050565b6109b28363a9059cbb60e01b8484604051602401610cb5929190611128565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610d95565b610cf78383836109b2565b6001600160a01b0382161580610d1457506001600160a01b038316155b80610d3757506001600160a01b03831660009081526006602052604090205460ff165b6109b25760405162461bcd60e51b81526004016107309061130f565b600061058a83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610b84565b6060610dea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e249092919063ffffffff16565b8051909150156109b25780806020019051810190610e0891906110a8565b6109b25760405162461bcd60e51b815260040161073090611447565b6060610e338484600085610e3b565b949350505050565b6060610e4685610eff565b610e625760405162461bcd60e51b815260040161073090611410565b60006060866001600160a01b03168587604051610e7f91906110f8565b60006040518083038185875af1925050503d8060008114610ebc576040519150601f19603f3d011682016040523d82523d6000602084013e610ec1565b606091505b50915091508115610ed5579150610e339050565b805115610ee55780518082602001fd5b8360405162461bcd60e51b815260040161073091906111a2565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590610e33575050151592915050565b600060208284031215610f49578081fd5b813561058a81611516565b600060208284031215610f65578081fd5b815161058a81611516565b60008060408385031215610f82578081fd5b8235610f8d81611516565b91506020830135610f9d81611516565b809150509250929050565b600080600060608486031215610fbc578081fd5b8335610fc781611516565b92506020840135610fd781611516565b929592945050506040919091013590565b60008060408385031215610ffa578182fd5b823561100581611516565b946020939093013593505050565b60006020808385031215611025578182fd5b823567ffffffffffffffff81111561103b578283fd5b8301601f8101851361104b578283fd5b803561105e611059826114c6565b61149f565b818152838101908385018584028501860189101561107a578687fd5b8694505b8385101561109c57803583526001949094019391850191850161107e565b50979650505050505050565b6000602082840312156110b9578081fd5b8151801515811461058a578182fd5b6000602082840312156110d9578081fd5b5035919050565b6000602082840312156110f1578081fd5b5051919050565b6000825161110a8184602087016114e6565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6020808252825182820181905260009190848201906040850190845b818110156111825783516001600160a01b03168352928401929184019160010161115d565b50909695505050505050565b901515815260200190565b90815260200190565b60006020825282518060208401526111c18160408501602087016114e6565b601f01601f19169190910160400192915050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601f908201527f41697264726f702072656465656d20706572696f642068617320656e64656400604082015260600190565b60208082526027908201527f41697264726f702072656465656d20706572696f6420686173206e6f7420656e604082015266191959081e595d60ca1b606082015260800190565b6020808252601e908201527f45524332303a207472616e73666572206973206e6f7420616c6c6f7765640000604082015260600190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60ff91909116815260200190565b60405181810167ffffffffffffffff811182821017156114be57600080fd5b604052919050565b600067ffffffffffffffff8211156114dc578081fd5b5060209081020190565b60005b838110156115015781810151838201526020016114e9565b83811115611510576000848401525b50505050565b6001600160a01b038116811461078457600080fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122074dec9cb778d508d2d30bca68a0c1721bd0136f35f249b63ee628c4b3aafc78564736f6c634300060c0033

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

79a75ab558b53fdc478d1b223d669e6f5f650ce9b7e9cdd6ae9bd9f0917b552d94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd0000000000000000000000000000000000000000000000000000000001da9c000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000002a0000000000000000000000005ba1b71a573b5d161a6d31781bc8d7325741dd2f0000000000000000000000000000000000000000000006c218c011288191f43c000000000000000000000000689738c753a76be0d708cf5e23cc4a69348c58930000000000000000000000000000000000000000000007336225efb03a0f82f1000000000000000000000000ff2ac56268e21cfac092bc12d37128710118feca0000000000000000000000000000000000000000000007a6ea7b83937abc76be0000000000000000000000007fd01da51d2691ff2d3de0389b89416a33719d4d00000000000000000000000000000000000000000000086e9fc7106e5da238fd00000000000000000000000048c92ebd9c8b4d1cacafe145a2563a86a17c9a620000000000000000000000000000000000000000000004fb6c1c9a8d806d4e070000000000000000000000005faadcaf6dab966f9614c7f135115d4acd700b3600000000000000000000000000000000000000000000040955e0843ca0fd7d8f000000000000000000000000a648140c57ecda7500ae7b1ffc233b2b8d5f324a0000000000000000000000000000000000000000000002980489cacf9ea8aac30000000000000000000000000218265a92227cffa7446577f2b5b63eab2b491800000000000000000000000000000000000000000000027903bde159b71cf0bc0000000000000000000000004e5baa0869b63a64bd01e6baefdca13f0e439f2f0000000000000000000000000000000000000000000001fa8cd302fa292d1783000000000000000000000000dc7a2bd77f095b14058e0026b68e7046621039e6000000000000000000000000000000000000000000000257066b2cbe4cce870b0000000000000000000000006a6c08a8a34c5a669487a634869b6627a50ac38b000000000000000000000000000000000000000000000137d7fbb86dca676835000000000000000000000000c77bba6ec0e42be8e7705c0124567e22d8507df400000000000000000000000000000000000000000000016b13e1526d8f509cf60000000000000000000000003cd177e751703e516c8e4b8697e5316e7f407262000000000000000000000000000000000000000000000156c99c511cf806f4490000000000000000000000000c88f1dc385c292d92465177a955bba3cc03148b0000000000000000000000000000000000000000000000b68b98cc08f990d247000000000000000000000000e76d853aee03978175158c1dd2ebb342782ac46700000000000000000000000000000000000000000000013de1212718002b98b2000000000000000000000000187c00667fd1e0293e299cc04ba3e980f33bb5c10000000000000000000000000000000000000000000008b294a0c6201cceb8ff0000000000000000000000002008d19d5bad368a577271ee43873349b1fb7bed00000000000000000000000000000000000000000000058d88a22d6d2cf16f620000000000000000000000004545957f1c17a9a2524cd39baf460768ef7764ac00000000000000000000000000000000000000000000039d391182b3bcb1ff5000000000000000000000000079bb544418b697709c29240d706dfdfc5f8596f7000000000000000000000000000000000000000000000336116e8887e326359700000000000000000000000075a89e145de32ac6e2b9730b709920c2bb26f73c0000000000000000000000000000000000000000000002864ea1675c1baae0df000000000000000000000000fa33679322becbee27f550c250c6572ddc0d3f6e000000000000000000000000000000000000000000000214798e47cd49a263d30000000000000000000000005b0ec28dce1272679d3d85d76d48adf8b4654d4d00000000000000000000000000000000000000000000014a47952c014328d9a4000000000000000000000000502553c9e8eece231e4c0878b02dc9b7bbb089a50000000000000000000000000000000000000000000000c39e30a2d4db1f169000000000000000000000000084ce69f169b79a43da5707b0a99f2d3f2d85f5480000000000000000000000000000000000000000000002aea0f3226585262ef00000000000000000000000001899b35c58f48ffa4c6d346db17f390f804abd0f0000000000000000000000000000000000000000000005a32dbd8a390d831f0d0000000000000000000000004e80731bf9e38e715582f58eda575364a6eab6ae0000000000000000000000000000000000000000000003e00dab1427ad4e04fe000000000000000000000000e483a86457a0b1673ed47b148e354368c3bd37040000000000000000000000000000000000000000000000b5e0a70d09896bf316000000000000000000000000c051f5345880aaaca4719f0a23c5a2a8661b332b000000000000000000000000000000000000000000000181fdd4b54231edb8d10000000000000000000000006310222e953556de7222dd38f9deb581d136f94e00000000000000000000000000000000000000000000013dacb3118cc48e5eba000000000000000000000000d863cd60d5148794c29854a48c5a7daddcb5f247000000000000000000000000000000000000000000000148cf0abef2a4b8ce71000000000000000000000000d3bd78f780fd5b372d18f07ef10e72f6c7c08af00000000000000000000000000000000000000000000001415708dce3a124d2240000000000000000000000003a2b681fc25e8ef711b98c363ea4cce168a3f83d0000000000000000000000000000000000000000000000f91780d9ed3c2a41c10000000000000000000000005199c4ef0529bcaccd38a122590efecf458209d40000000000000000000000000000000000000000000000ab11a3b2d650383ceb0000000000000000000000009fc2d705544754aee127bae78c73bd32fbb60bbf00000000000000000000000000000000000000000000004e7b2a292062db08ba0000000000000000000000008cddcc061643789cf694fe9925eb7bdb8204c6860000000000000000000000000000000000000000000000381c102a93cf0d44e30000000000000000000000009ade8a20b95124ab686a5d8a81873d6f3b8311ac000000000000000000000000000000000000000000000036e81bb7b8333b82c5000000000000000000000000956ce06aefed4149cf54a14fabe51ff002ae616300000000000000000000000000000000000000000000002e492bcaac2a5b790c0000000000000000000000003db3f6c2b2738d59620115034573e68007e6039c000000000000000000000000000000000000000000000012e5898b076483d9b200000000000000000000000000d99d7214a595a258935ffcbd5ca7475df715790000000000000000000000000000000000000000000000073e1f971ec674a2e4000000000000000000000000695ee818abafbfd104d1083a8b760d96d49479da00000000000000000000000000000000000000000000006b7203645b448cb6b900000000000000000000000084e4313c332a0f1a18f04a042bd1e999f2b8d857000000000000000000000000000000000000000000000148d5fe9bc7433340c7000000000000000000000000d90bc4b8c376823c72da1c1afdd9b4c3b1ff35ca00000000000000000000000000000000000000000000013488605574c25393d0

-----Decoded View---------------
Arg [0] : _torn (bytes32): 0x79a75ab558b53fdc478d1b223d669e6f5f650ce9b7e9cdd6ae9bd9f0917b552d
Arg [1] : _governance (bytes32): 0x94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd
Arg [2] : _duration (uint256): 31104000
Arg [3] : _airdrops (tuple[]): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput],System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
89 Constructor Arguments found :
Arg [0] : 79a75ab558b53fdc478d1b223d669e6f5f650ce9b7e9cdd6ae9bd9f0917b552d
Arg [1] : 94d63e9067c3ab2d966702f604484c43b5ea247ecd08c28762caa50df5dc02bd
Arg [2] : 0000000000000000000000000000000000000000000000000000000001da9c00
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002a
Arg [5] : 0000000000000000000000005ba1b71a573b5d161a6d31781bc8d7325741dd2f
Arg [6] : 0000000000000000000000000000000000000000000006c218c011288191f43c
Arg [7] : 000000000000000000000000689738c753a76be0d708cf5e23cc4a69348c5893
Arg [8] : 0000000000000000000000000000000000000000000007336225efb03a0f82f1
Arg [9] : 000000000000000000000000ff2ac56268e21cfac092bc12d37128710118feca
Arg [10] : 0000000000000000000000000000000000000000000007a6ea7b83937abc76be
Arg [11] : 0000000000000000000000007fd01da51d2691ff2d3de0389b89416a33719d4d
Arg [12] : 00000000000000000000000000000000000000000000086e9fc7106e5da238fd
Arg [13] : 00000000000000000000000048c92ebd9c8b4d1cacafe145a2563a86a17c9a62
Arg [14] : 0000000000000000000000000000000000000000000004fb6c1c9a8d806d4e07
Arg [15] : 0000000000000000000000005faadcaf6dab966f9614c7f135115d4acd700b36
Arg [16] : 00000000000000000000000000000000000000000000040955e0843ca0fd7d8f
Arg [17] : 000000000000000000000000a648140c57ecda7500ae7b1ffc233b2b8d5f324a
Arg [18] : 0000000000000000000000000000000000000000000002980489cacf9ea8aac3
Arg [19] : 0000000000000000000000000218265a92227cffa7446577f2b5b63eab2b4918
Arg [20] : 00000000000000000000000000000000000000000000027903bde159b71cf0bc
Arg [21] : 0000000000000000000000004e5baa0869b63a64bd01e6baefdca13f0e439f2f
Arg [22] : 0000000000000000000000000000000000000000000001fa8cd302fa292d1783
Arg [23] : 000000000000000000000000dc7a2bd77f095b14058e0026b68e7046621039e6
Arg [24] : 000000000000000000000000000000000000000000000257066b2cbe4cce870b
Arg [25] : 0000000000000000000000006a6c08a8a34c5a669487a634869b6627a50ac38b
Arg [26] : 000000000000000000000000000000000000000000000137d7fbb86dca676835
Arg [27] : 000000000000000000000000c77bba6ec0e42be8e7705c0124567e22d8507df4
Arg [28] : 00000000000000000000000000000000000000000000016b13e1526d8f509cf6
Arg [29] : 0000000000000000000000003cd177e751703e516c8e4b8697e5316e7f407262
Arg [30] : 000000000000000000000000000000000000000000000156c99c511cf806f449
Arg [31] : 0000000000000000000000000c88f1dc385c292d92465177a955bba3cc03148b
Arg [32] : 0000000000000000000000000000000000000000000000b68b98cc08f990d247
Arg [33] : 000000000000000000000000e76d853aee03978175158c1dd2ebb342782ac467
Arg [34] : 00000000000000000000000000000000000000000000013de1212718002b98b2
Arg [35] : 000000000000000000000000187c00667fd1e0293e299cc04ba3e980f33bb5c1
Arg [36] : 0000000000000000000000000000000000000000000008b294a0c6201cceb8ff
Arg [37] : 0000000000000000000000002008d19d5bad368a577271ee43873349b1fb7bed
Arg [38] : 00000000000000000000000000000000000000000000058d88a22d6d2cf16f62
Arg [39] : 0000000000000000000000004545957f1c17a9a2524cd39baf460768ef7764ac
Arg [40] : 00000000000000000000000000000000000000000000039d391182b3bcb1ff50
Arg [41] : 00000000000000000000000079bb544418b697709c29240d706dfdfc5f8596f7
Arg [42] : 000000000000000000000000000000000000000000000336116e8887e3263597
Arg [43] : 00000000000000000000000075a89e145de32ac6e2b9730b709920c2bb26f73c
Arg [44] : 0000000000000000000000000000000000000000000002864ea1675c1baae0df
Arg [45] : 000000000000000000000000fa33679322becbee27f550c250c6572ddc0d3f6e
Arg [46] : 000000000000000000000000000000000000000000000214798e47cd49a263d3
Arg [47] : 0000000000000000000000005b0ec28dce1272679d3d85d76d48adf8b4654d4d
Arg [48] : 00000000000000000000000000000000000000000000014a47952c014328d9a4
Arg [49] : 000000000000000000000000502553c9e8eece231e4c0878b02dc9b7bbb089a5
Arg [50] : 0000000000000000000000000000000000000000000000c39e30a2d4db1f1690
Arg [51] : 00000000000000000000000084ce69f169b79a43da5707b0a99f2d3f2d85f548
Arg [52] : 0000000000000000000000000000000000000000000002aea0f3226585262ef0
Arg [53] : 0000000000000000000000001899b35c58f48ffa4c6d346db17f390f804abd0f
Arg [54] : 0000000000000000000000000000000000000000000005a32dbd8a390d831f0d
Arg [55] : 0000000000000000000000004e80731bf9e38e715582f58eda575364a6eab6ae
Arg [56] : 0000000000000000000000000000000000000000000003e00dab1427ad4e04fe
Arg [57] : 000000000000000000000000e483a86457a0b1673ed47b148e354368c3bd3704
Arg [58] : 0000000000000000000000000000000000000000000000b5e0a70d09896bf316
Arg [59] : 000000000000000000000000c051f5345880aaaca4719f0a23c5a2a8661b332b
Arg [60] : 000000000000000000000000000000000000000000000181fdd4b54231edb8d1
Arg [61] : 0000000000000000000000006310222e953556de7222dd38f9deb581d136f94e
Arg [62] : 00000000000000000000000000000000000000000000013dacb3118cc48e5eba
Arg [63] : 000000000000000000000000d863cd60d5148794c29854a48c5a7daddcb5f247
Arg [64] : 000000000000000000000000000000000000000000000148cf0abef2a4b8ce71
Arg [65] : 000000000000000000000000d3bd78f780fd5b372d18f07ef10e72f6c7c08af0
Arg [66] : 0000000000000000000000000000000000000000000001415708dce3a124d224
Arg [67] : 0000000000000000000000003a2b681fc25e8ef711b98c363ea4cce168a3f83d
Arg [68] : 0000000000000000000000000000000000000000000000f91780d9ed3c2a41c1
Arg [69] : 0000000000000000000000005199c4ef0529bcaccd38a122590efecf458209d4
Arg [70] : 0000000000000000000000000000000000000000000000ab11a3b2d650383ceb
Arg [71] : 0000000000000000000000009fc2d705544754aee127bae78c73bd32fbb60bbf
Arg [72] : 00000000000000000000000000000000000000000000004e7b2a292062db08ba
Arg [73] : 0000000000000000000000008cddcc061643789cf694fe9925eb7bdb8204c686
Arg [74] : 0000000000000000000000000000000000000000000000381c102a93cf0d44e3
Arg [75] : 0000000000000000000000009ade8a20b95124ab686a5d8a81873d6f3b8311ac
Arg [76] : 000000000000000000000000000000000000000000000036e81bb7b8333b82c5
Arg [77] : 000000000000000000000000956ce06aefed4149cf54a14fabe51ff002ae6163
Arg [78] : 00000000000000000000000000000000000000000000002e492bcaac2a5b790c
Arg [79] : 0000000000000000000000003db3f6c2b2738d59620115034573e68007e6039c
Arg [80] : 000000000000000000000000000000000000000000000012e5898b076483d9b2
Arg [81] : 00000000000000000000000000d99d7214a595a258935ffcbd5ca7475df71579
Arg [82] : 0000000000000000000000000000000000000000000000073e1f971ec674a2e4
Arg [83] : 000000000000000000000000695ee818abafbfd104d1083a8b760d96d49479da
Arg [84] : 00000000000000000000000000000000000000000000006b7203645b448cb6b9
Arg [85] : 00000000000000000000000084e4313c332a0f1a18f04a042bd1e999f2b8d857
Arg [86] : 000000000000000000000000000000000000000000000148d5fe9bc7433340c7
Arg [87] : 000000000000000000000000d90bc4b8c376823c72da1c1afdd9b4c3b1ff35ca
Arg [88] : 00000000000000000000000000000000000000000000013488605574c25393d0


Deployed Bytecode Sourcemap

31985:1628:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18374:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20480:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;19449:100::-;;;:::i;:::-;;;;;;;:::i;21123:321::-;;;;;;:::i;:::-;;:::i;19301:83::-;;;:::i;:::-;;;;;;;:::i;21853:218::-;;;;;;:::i;:::-;;:::i;32184:35::-;;;:::i;:::-;;;;;;;:::i;31122:271::-;;;;;;:::i;:::-;;:::i;32224:49::-;;;;;;:::i;:::-;;:::i;19612:119::-;;;;;;:::i;:::-;;:::i;32145:34::-;;;:::i;18576:87::-;;;:::i;22574:269::-;;;;;;:::i;:::-;;:::i;19944:175::-;;;;;;:::i;:::-;;:::i;33511:99::-;;;:::i;32112:28::-;;;:::i;32777:233::-;;;:::i;:::-;;33016:201;;;:::i;20182:151::-;;;;;;:::i;:::-;;:::i;31399:243::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;18374:83::-;18444:5;18437:12;;;;;;;;-1:-1:-1;;18437:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18411:13;;18437:12;;18444:5;;18437:12;;18444:5;18437:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18374:83;:::o;20480:169::-;20563:4;20580:39;20589:12;:10;:12::i;:::-;20603:7;20612:6;20580:8;:39::i;:::-;-1:-1:-1;20637:4:0;20480:169;;;;:::o;19449:100::-;19529:12;;19449:100;:::o;21123:321::-;21229:4;21246:36;21256:6;21264:9;21275:6;21246:9;:36::i;:::-;21293:121;21302:6;21310:12;:10;:12::i;:::-;21324:89;21362:6;21324:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21324:19:0;;;;;;:11;:19;;;;;;21344:12;:10;:12::i;:::-;-1:-1:-1;;;;;21324:33:0;;;;;;;;;;;;-1:-1:-1;21324:33:0;;;:89;:37;:89::i;:::-;21293:8;:121::i;:::-;-1:-1:-1;21432:4:0;21123:321;;;;;:::o;19301:83::-;19367:9;;;;19301:83;:::o;21853:218::-;21941:4;21958:83;21967:12;:10;:12::i;:::-;21981:7;21990:50;22029:10;21990:11;:25;22002:12;:10;:12::i;:::-;-1:-1:-1;;;;;21990:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;21990:25:0;;;:34;;;;;;;;;;;:38;:50::i;32184:35::-;;;:::o;31122:271::-;31182:7;31198:12;31225;:10;:12::i;:::-;31241:1;31225:17;:107;;31290:42;31225:107;;;31245:42;31225:107;31353:23;;-1:-1:-1;;;31353:23:0;;31198:141;;-1:-1:-1;;;;;;31353:17:0;;;;;:23;;31371:4;;31353:23;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31353:28:0;;31382:4;31353:34;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31346:41;31122:271;-1:-1:-1;;;31122:271:0:o;32224:49::-;;;;;;;;;;;;;;;:::o;19612:119::-;-1:-1:-1;;;;;19705:18:0;19678:7;19705:18;;;;;;;;;;;;19612:119::o;32145:34::-;;;:::o;18576:87::-;18648:7;18641:14;;;;;;;;-1:-1:-1;;18641:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18615:13;;18641:14;;18648:7;;18641:14;;18648:7;18641:14;;;;;;;;;;;;;;;;;;;;;;;;22574:269;22667:4;22684:129;22693:12;:10;:12::i;:::-;22707:7;22716:96;22755:15;22716:96;;;;;;;;;;;;;;;;;:11;:25;22728:12;:10;:12::i;:::-;-1:-1:-1;;;;;22716:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;22716:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;19944:175::-;20030:4;20047:42;20057:12;:10;:12::i;:::-;20071:9;20082:6;20047:9;:42::i;33511:99::-;33589:15;33511:99;:::o;32112:28::-;;;:::o;32777:233::-;32838:9;32819:16;:14;:16::i;:::-;:28;32811:72;;;;-1:-1:-1;;;32811:72:0;;;;;;;:::i;:::-;;;;;;;;;32890:14;32907:21;32917:10;32907:9;:21::i;:::-;32890:38;;32935:25;32941:10;32953:6;32935:5;:25::i;:::-;32967:37;-1:-1:-1;;;;;32967:4:0;:17;32985:10;32997:6;32967:17;:37::i;:::-;32777:233;:::o;33016:201::-;33091:9;33071:16;:14;:16::i;:::-;:29;;33063:81;;;;-1:-1:-1;;;33063:81:0;;;;;;;:::i;:::-;33151:60;33169:10;33181:4;-1:-1:-1;;;;;33181:14:0;;33204:4;33181:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33151:4:0;:17;;:60;:17;:60::i;:::-;33016:201::o;20182:151::-;-1:-1:-1;;;;;20298:18:0;;;20271:7;20298:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;20182:151::o;31399:243::-;31467:23;31522:7;:14;31508:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31508:29:0;;31499:38;;31549:9;31544:93;31568:7;:14;31564:1;:18;31544:93;;;31610:19;31618:7;31626:1;31618:10;;;;;;;;;;;;;;31610:7;:19::i;:::-;31598:6;31605:1;31598:9;;;;;;;;-1:-1:-1;;;;;31598:31:0;;;:9;;;;;;;;;;;:31;31584:3;;31544:93;;;;31399:243;;;:::o;5550:181::-;5608:7;5640:5;;;5664:6;;;;5656:46;;;;-1:-1:-1;;;5656:46:0;;;;;;;:::i;27092:92::-;;;;:::o;1530:106::-;1618:10;1530:106;:::o;25721:346::-;-1:-1:-1;;;;;25823:19:0;;25815:68;;;;-1:-1:-1;;;25815:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25902:21:0;;25894:68;;;;-1:-1:-1;;;25894:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25975:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;26027:32;;;;;26005:6;;26027:32;:::i;:::-;;;;;;;;25721:346;;;:::o;23333:539::-;-1:-1:-1;;;;;23439:20:0;;23431:70;;;;-1:-1:-1;;;23431:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23520:23:0;;23512:71;;;;-1:-1:-1;;;23512:71:0;;;;;;;:::i;:::-;23596:47;23617:6;23625:9;23636:6;23596:20;:47::i;:::-;23676:71;23698:6;23676:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23676:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;23656:17:0;;;:9;:17;;;;;;;;;;;:91;;;;23781:20;;;;;;;:32;;23806:6;23781:24;:32::i;:::-;-1:-1:-1;;;;;23758:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;23829:35;;;;;;;;;;23857:6;;23829:35;:::i;6453:192::-;6539:7;6575:12;6567:6;;;;6559:29;;;;-1:-1:-1;;;6559:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;6611:5:0;;;6453:192::o;31648:154::-;31760:9;31648:154;:::o;24863:418::-;-1:-1:-1;;;;;24947:21:0;;24939:67;;;;-1:-1:-1;;;24939:67:0;;;;;;;:::i;:::-;25019:49;25040:7;25057:1;25061:6;25019:20;:49::i;:::-;25102:68;25125:6;25102:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25102:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;25081:18:0;;:9;:18;;;;;;;;;;:89;25196:12;;:24;;25213:6;25196:16;:24::i;:::-;25181:12;:39;25236:37;;25262:1;;-1:-1:-1;;;;;25236:37:0;;;;;;;25266:6;;25236:37;:::i;:::-;;;;;;;;24863:418;;:::o;27812:177::-;27895:86;27915:5;27945:23;;;27970:2;27974:5;27922:58;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;27922:58:0;;;;;;;;;;;;;;-1:-1:-1;;;;;27922:58:0;-1:-1:-1;;;;;;27922:58:0;;;;;;;;;;27895:19;:86::i;33223:282::-;33340:44;33367:4;33373:2;33377:6;33340:26;:44::i;:::-;-1:-1:-1;;;;;33399:16:0;;;;:38;;-1:-1:-1;;;;;;33419:18:0;;;33399:38;:65;;;-1:-1:-1;;;;;;33441:23:0;;;;;;:17;:23;;;;;;;;33399:65;33391:108;;;;-1:-1:-1;;;33391:108:0;;;;;;;:::i;6014:136::-;6072:7;6099:43;6103:1;6106;6099:43;;;;;;;;;;;;;;;;;:3;:43::i;30117:761::-;30541:23;30567:69;30595:4;30567:69;;;;;;;;;;;;;;;;;30575:5;-1:-1:-1;;;;;30567:27:0;;;:69;;;;;:::i;:::-;30651:17;;30541:95;;-1:-1:-1;30651:21:0;30647:224;;30793:10;30782:30;;;;;;;;;;;;:::i;:::-;30774:85;;;;-1:-1:-1;;;30774:85:0;;;;;;;:::i;13860:196::-;13963:12;13995:53;14018:6;14026:4;14032:1;14035:12;13995:22;:53::i;:::-;13988:60;13860:196;-1:-1:-1;;;;13860:196:0:o;15237:979::-;15367:12;15400:18;15411:6;15400:10;:18::i;:::-;15392:60;;;;-1:-1:-1;;;15392:60:0;;;;;;;:::i;:::-;15526:12;15540:23;15567:6;-1:-1:-1;;;;;15567:11:0;15587:8;15598:4;15567:36;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15525:78;;;;15618:7;15614:595;;;15649:10;-1:-1:-1;15642:17:0;;-1:-1:-1;15642:17:0;15614:595;15763:17;;:21;15759:439;;16026:10;16020:17;16087:15;16074:10;16070:2;16066:19;16059:44;15974:148;16169:12;16162:20;;-1:-1:-1;;;16162:20:0;;;;;;;;:::i;10745:619::-;10805:4;11273:20;;11116:66;11313:23;;;;;;:42;;-1:-1:-1;;11340:15:0;;;11305:51;-1:-1:-1;;10745:619:0:o;1741:241:-1:-;;1845:2;1833:9;1824:7;1820:23;1816:32;1813:2;;;-1:-1;;1851:12;1813:2;85:6;72:20;97:33;124:5;97:33;:::i;1989:263::-;;2104:2;2092:9;2083:7;2079:23;2075:32;2072:2;;;-1:-1;;2110:12;2072:2;226:6;220:13;238:33;265:5;238:33;:::i;2259:366::-;;;2380:2;2368:9;2359:7;2355:23;2351:32;2348:2;;;-1:-1;;2386:12;2348:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2438:63;-1:-1;2538:2;2577:22;;72:20;97:33;72:20;97:33;:::i;:::-;2546:63;;;;2342:283;;;;;:::o;2632:491::-;;;;2770:2;2758:9;2749:7;2745:23;2741:32;2738:2;;;-1:-1;;2776:12;2738:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;2828:63;-1:-1;2928:2;2967:22;;72:20;97:33;72:20;97:33;:::i;:::-;2732:391;;2936:63;;-1:-1;;;3036:2;3075:22;;;;1530:20;;2732:391::o;3130:366::-;;;3251:2;3239:9;3230:7;3226:23;3222:32;3219:2;;;-1:-1;;3257:12;3219:2;85:6;72:20;97:33;124:5;97:33;:::i;:::-;3309:63;3409:2;3448:22;;;;1530:20;;-1:-1;;;3213:283::o;3503:377::-;;3632:2;;3620:9;3611:7;3607:23;3603:32;3600:2;;;-1:-1;;3638:12;3600:2;3696:17;3683:31;3734:18;3726:6;3723:30;3720:2;;;-1:-1;;3756:12;3720:2;3832:22;;411:4;399:17;;395:27;-1:-1;385:2;;-1:-1;;426:12;385:2;473:6;460:20;495:80;510:64;567:6;510:64;:::i;:::-;495:80;:::i;:::-;603:21;;;660:14;;;;635:17;;;749;;;740:27;;;;737:36;-1:-1;734:2;;;-1:-1;;776:12;734:2;-1:-1;802:10;;796:206;821:6;818:1;815:13;796:206;;;1218:20;;889:50;;843:1;836:9;;;;;953:14;;;;981;;796:206;;;-1:-1;3776:88;3594:286;-1:-1;;;;;;;3594:286::o;3887:257::-;;3999:2;3987:9;3978:7;3974:23;3970:32;3967:2;;;-1:-1;;4005:12;3967:2;1097:6;1091:13;22139:5;20755:13;20748:21;22117:5;22114:32;22104:2;;-1:-1;;22150:12;4151:241;;4255:2;4243:9;4234:7;4230:23;4226:32;4223:2;;;-1:-1;;4261:12;4223:2;-1:-1;1218:20;;4217:175;-1:-1;4217:175::o;4703:263::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;-1:-1;;4824:12;4786:2;-1:-1;1678:13;;4780:186;-1:-1;4780:186::o;11486:271::-;;6505:5;19666:12;6616:52;6661:6;6656:3;6649:4;6642:5;6638:16;6616:52;:::i;:::-;6680:16;;;;;11620:137;-1:-1;;11620:137::o;11764:222::-;-1:-1;;;;;21037:54;;;;5216:37;;11891:2;11876:18;;11862:124::o;11993:333::-;-1:-1;;;;;21037:54;;;;5216:37;;12312:2;12297:18;;6296:37;12148:2;12133:18;;12119:207::o;12333:370::-;12510:2;12524:47;;;19666:12;;12495:18;;;20198:19;;;12333:370;;12510:2;19520:14;;;;20238;;;;12333:370;5824:260;5849:6;5846:1;5843:13;5824:260;;;5910:13;;-1:-1;;;;;21037:54;5216:37;;20053:14;;;;5127;;;;3734:18;5864:9;5824:260;;;-1:-1;12577:116;;12481:222;-1:-1;;;;;;12481:222::o;12710:210::-;20755:13;;20748:21;6179:34;;12831:2;12816:18;;12802:118::o;12927:222::-;6296:37;;;13054:2;13039:18;;13025:124::o;13411:310::-;;13558:2;13579:17;13572:47;7012:5;19666:12;20210:6;13558:2;13547:9;13543:18;20198:19;7106:52;7151:6;20238:14;13547:9;20238:14;13558:2;7132:5;7128:16;7106:52;:::i;:::-;21913:7;21897:14;-1:-1;;21893:28;7170:39;;;;20238:14;7170:39;;13529:192;-1:-1;;13529:192::o;13728:416::-;13928:2;13942:47;;;7446:2;13913:18;;;20198:19;7482:34;20238:14;;;7462:55;-1:-1;;;7537:12;;;7530:27;7576:12;;;13899:245::o;14151:416::-;14351:2;14365:47;;;7827:2;14336:18;;;20198:19;7863:34;20238:14;;;7843:55;-1:-1;;;7918:12;;;7911:26;7956:12;;;14322:245::o;14574:416::-;14774:2;14788:47;;;8207:2;14759:18;;;20198:19;8243:29;20238:14;;;8223:50;8292:12;;;14745:245::o;14997:416::-;15197:2;15211:47;;;8543:2;15182:18;;;20198:19;8579:33;20238:14;;;8559:54;8632:12;;;15168:245::o;15420:416::-;15620:2;15634:47;;;8883:2;15605:18;;;20198:19;8919:34;20238:14;;;8899:55;-1:-1;;;8974:12;;;8967:31;9017:12;;;15591:245::o;15843:416::-;16043:2;16057:47;;;9268:2;16028:18;;;20198:19;9304:32;20238:14;;;9284:53;9356:12;;;16014:245::o;16266:416::-;16466:2;16480:47;;;9607:2;16451:18;;;20198:19;9643:34;20238:14;;;9623:55;-1:-1;;;9698:12;;;9691:25;9735:12;;;16437:245::o;16689:416::-;16889:2;16903:47;;;9986:2;16874:18;;;20198:19;10022:34;20238:14;;;10002:55;-1:-1;;;10077:12;;;10070:29;10118:12;;;16860:245::o;17112:416::-;17312:2;17326:47;;;10369:2;17297:18;;;20198:19;10405:34;20238:14;;;10385:55;-1:-1;;;10460:12;;;10453:28;10500:12;;;17283:245::o;17535:416::-;17735:2;17749:47;;;10751:2;17720:18;;;20198:19;10787:31;20238:14;;;10767:52;10838:12;;;17706:245::o;17958:416::-;18158:2;18172:47;;;11089:2;18143:18;;;20198:19;11125:34;20238:14;;;11105:55;-1:-1;;;11180:12;;;11173:34;11226:12;;;18129:245::o;18610:214::-;21253:4;21242:16;;;;11439:35;;18733:2;18718:18;;18704:120::o;18831:256::-;18893:2;18887:9;18919:17;;;18994:18;18979:34;;19015:22;;;18976:62;18973:2;;;19051:1;;19041:12;18973:2;18893;19060:22;18871:216;;-1:-1;18871:216::o;19094:304::-;;19253:18;19245:6;19242:30;19239:2;;;-1:-1;;19275:12;19239:2;-1:-1;19320:4;19308:17;;;19373:15;;19176:222::o;21553:268::-;21618:1;21625:101;21639:6;21636:1;21633:13;21625:101;;;21706:11;;;21700:18;21687:11;;;21680:39;21661:2;21654:10;21625:101;;;21741:6;21738:1;21735:13;21732:2;;;21618:1;21797:6;21792:3;21788:16;21781:27;21732:2;;21602:219;;;:::o;21934:117::-;-1:-1;;;;;21037:54;;21993:35;;21983:2;;22042:1;;22032:12

Swarm Source

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