ETH Price: $2,981.30 (-3.95%)
Gas: 1 Gwei

Token

Auric Network (AUSCM)
 

Overview

Max Total Supply

156,401.885518058451056979 AUSCM

Holders

854 (0.00%)

Market

Price

$0.07 @ 0.000023 ETH

Onchain Market Cap

$10,724.88

Circulating Supply Market Cap

$0.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
2.97553566214905339 AUSCM

Value
$0.20 ( ~6.70849187687562E-05 Eth) [0.0019%]
0xc94cfd89c97d98571e79c74fe30f5c9dcab79a95
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Auric is a gold-based synthetic commodity money.

Market

Volume (24H):$0.00
Market Capitalization:$0.00
Circulating Supply:0.00 AUSCM
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2BBf18f0...fE9fDd5Cc
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
AUSC

Compiler Version
v0.5.16+commit.9c3226ce

Optimization Enabled:
Yes with 150 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/IRebaser.sol

pragma solidity 0.5.16;

interface IRebaser {

  function checkRebase() external;

}

// File: contracts/token/GovernanceStorage.sol

pragma solidity 0.5.16;


/* Copyright 2020 Compound Labs, Inc.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */


contract GovernanceStorage {
    /// @notice A record of each accounts delegate
    mapping (address => address) internal _delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint256 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;
}

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

pragma solidity ^0.5.0;

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

        return c;
    }

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * - Subtraction cannot overflow.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

// File: contracts/token/TokenStorage.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.5.16;


contract TokenStorage {

  using SafeMath for uint256;

  /**
   * @notice EIP-20 token name for this token
   */
  string public name;

  /**
   * @notice EIP-20 token symbol for this token
   */
  string public symbol;

  /**
   * @notice EIP-20 token decimals for this token
   */
  uint8 public decimals;

  /**
   * @notice Governor for this contract
   */
  address public gov;

  /**
   * @notice Pending governance for this contract
   */
  address public pendingGov;

  /**
   * @notice Approved rebaser for this contract
   */
  address public rebaser;

  /**
   * @notice Total supply of YAMs
   */
  uint256 public totalSupply;

  /**
   * @notice Internal decimals used to handle scaling factor
   */
  uint256 public constant internalDecimals = 10 ** 24;

  /**
   * @notice Used for percentage maths
   */
  uint256 public constant BASE = 10 ** 18;

  /**
   * @notice Scaling factor that adjusts everyone's balances
   */
  uint256 public auscsScalingFactor;

  mapping(address => uint256) internal _auscBalances;

  mapping(address => mapping(address => uint256)) internal _allowedFragments;

  uint256 public initSupply;
}

// File: contracts/token/TokenInterface.sol

// SPDX-License-Identifier: MIT

pragma solidity 0.5.16;



contract TokenInterface is TokenStorage, GovernanceStorage {

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Event emitted when tokens are rebased
     */
    event Rebase(uint256 epoch, uint256 prevAuscsScalingFactor, uint256 newAuscsScalingFactor);

    /*** Gov Events ***/

    /**
     * @notice Event emitted when pendingGov is changed
     */
    event NewPendingGov(address oldPendingGov, address newPendingGov);

    /**
     * @notice Event emitted when gov is changed
     */
    event NewGov(address oldGov, address newGov);

    /**
     * @notice Sets the rebaser contract
     */
    event NewRebaser(address oldRebaser, address newRebaser);

    /* - ERC20 Events - */

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /* - Extra Events - */
    /**
     * @notice Tokens minted event
     */
    event Mint(address to, uint256 amount);
    event Burn(address from, uint256 amount);

    // Public functions
    function transfer(address to, uint256 value) external returns(bool);
    function transferFrom(address from, address to, uint256 value) external returns(bool);
    function balanceOf(address who) external view returns(uint256);
    function balanceOfUnderlying(address who) external view returns(uint256);
    function allowance(address owner_, address spender) external view returns(uint256);
    function approve(address spender, uint256 value) external returns (bool);
    function increaseAllowance(address spender, uint256 addedValue) external returns (bool);
    function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool);
    function maxScalingFactor() external view returns (uint256);
    function auscToFragment(uint256 ausc) external view returns (uint256);
    function fragmentToAusc(uint256 value) external view returns (uint256);

    /* - Governance Functions - */
    function getPriorVotes(address account, uint blockNumber) external view returns (uint256);
//    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) external;
    function delegate(address delegatee) external;
    function delegates(address delegator) external view returns (address);
    function getCurrentVotes(address account) external view returns (uint256);

    /* - Permissioned/Governance functions - */
    function mint(address to, uint256 amount) external returns (bool);
    function rebase(uint256 epoch, uint256 indexDelta, bool positive) external returns (uint256);
    function _setRebaser(address rebaser_) external;
    function _setPendingGov(address pendingGov_) external;
    function _acceptGov() external;
}

// File: contracts/token/Governance.sol

pragma solidity 0.5.16;


/* Copyright 2020 Compound Labs, Inc.

Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:

1. Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.

2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions
and the following disclaimer in the documentation and/or other materials provided with the
distribution.

3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR
IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */



contract GovernanceToken is TokenInterface {

    /// @notice An event emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /**
     * @notice Get delegatee for an address delegating
     * @param delegator The address to get delegatee for
     */
    function delegates(address delegator)
        external
        view
        returns (address)
    {
        return _delegates[delegator];
    }

   /**
    * @notice Delegate votes from `msg.sender` to `delegatee`
    * @param delegatee The address to delegate votes to
    */
    function delegate(address delegatee) external {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account)
        external
        view
        returns (uint256)
    {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber)
        external
        view
        returns (uint256)
    {
        require(blockNumber < block.number, "AUSC::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee)
        internal
    {
        address currentDelegate = _delegates[delegator];
        uint256 delegatorBalance = _auscBalances[delegator]; // balance of underlying YAMs (not scaled);
        _delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                // decrease old representative
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint256 srcRepNew = srcRepOld.sub(amount);
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                // increase new representative
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint256 dstRepNew = dstRepOld.add(amount);
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint256 oldVotes,
        uint256 newVotes
    )
        internal
    {
        uint32 blockNumber = safe32(block.number, "AUSC::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }
}

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

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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/utils/Address.sol

pragma solidity ^0.5.5;

/**
 * @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 Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     *
     * _Available since v2.4.0._
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }

    /**
     * @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].
     *
     * _Available since v2.4.0._
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

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

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

pragma solidity ^0.5.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for ERC20;` 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));
    }

    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.

        // A Solidity high level call has three parts:
        //  1. The target address is checked to verify it contains contract code
        //  2. The call itself is made, and success asserted
        //  3. The return value is decoded, which in turn checks the size of the returned data.
        // solhint-disable-next-line max-line-length
        require(address(token).isContract(), "SafeERC20: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = address(token).call(data);
        require(success, "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/AUSC.sol

// SPDX-License-Identifier: GPL-3.0-or-later

pragma solidity 0.5.16;




contract AUSCToken is GovernanceToken {

  // Modifiers
  modifier onlyGov() {
    require(msg.sender == gov, "only governance");
    _;
  }

  modifier onlyRebaser() {
    require(msg.sender == rebaser);
    _;
  }

  modifier rebaseAtTheEnd() {
    _;
    if (msg.sender == tx.origin && rebaser != address(0)) {
      IRebaser(rebaser).checkRebase();
    }
  }

  modifier onlyMinter() {
    require(
      msg.sender == rebaser || msg.sender == gov,
      "not minter"
    );
    _;
  }

  modifier validRecipient(address to) {
    require(to != address(0x0));
    require(to != address(this));
    _;
  }

  function initialize(
    string memory name_,
    string memory symbol_,
    uint8 decimals_
  )
  public
  {
    require(auscsScalingFactor == 0, "already initialized");
    name = name_;
    symbol = symbol_;
    decimals = decimals_;
  }


  /**
  * @notice Computes the current max scaling factor
  */
  function maxScalingFactor()
  external
  view
  returns (uint256)
  {
    return _maxScalingFactor();
  }

  function _maxScalingFactor()
  internal
  view
  returns (uint256)
  {
    // scaling factor can only go up to 2**256-1 = initSupply * auscsScalingFactor
    // this is used to check if auscsScalingFactor will be too high to compute balances when rebasing.
    return uint256(- 1) / initSupply;
  }

  /**
  * @notice Mints new tokens, increasing totalSupply, initSupply, and a users balance.
  * @dev Limited to onlyMinter modifier
  */
  function mint(address to, uint256 amount)
  external
  onlyMinter
  returns (bool)
  {
    _mint(to, amount);
    return true;
  }

  function _mint(address to, uint256 amount)
  internal
  {
    // increase totalSupply
    totalSupply = totalSupply.add(amount);

    // get underlying value
    uint256 auscValue = fragmentToAusc(amount);

    // increase initSupply
    initSupply = initSupply.add(auscValue);

    // make sure the mint didnt push maxScalingFactor too low
    require(auscsScalingFactor <= _maxScalingFactor(), "max scaling factor too low");

    // add balance
    _auscBalances[to] = _auscBalances[to].add(auscValue);

    // add delegates to the minter
    _moveDelegates(address(0), _delegates[to], auscValue);
    emit Mint(to, amount);
    emit Transfer(address(0), to, amount);
  }

  /**
  * @notice Burns tokens, decreasing totalSupply, initSupply, and a users balance.
  */
  function burn(uint256 amount)
  external
  returns (bool)
  { 
    _burn(msg.sender, amount);
    return true;
  }

  function _burn(address from, uint256 amount)
  internal
  {
    // increase totalSupply
    totalSupply = totalSupply.sub(amount);

    // get underlying value
    uint256 auscValue = fragmentToAusc(amount);

    // increase initSupply
    initSupply = initSupply.sub(auscValue);

    // make sure the burn didnt push maxScalingFactor too low
    require(auscsScalingFactor <= _maxScalingFactor(), "max scaling factor too low");

    // sub balance, will revert on underflow
    _auscBalances[from] = _auscBalances[from].sub(auscValue);

    // remove delegates from the minter
    _moveDelegates(_delegates[from], address(0), auscValue);
    emit Burn(from, amount);
    emit Transfer(from, address(0), amount);
  }

  /* - ERC20 functionality - */

  /**
  * @dev Transfer tokens to a specified address.
  * @param to The address to transfer to.
  * @param value The amount to be transferred.
  * @return True on success, false otherwise.
  */
  function transfer(address to, uint256 value)
  external
  validRecipient(to)
  rebaseAtTheEnd
  returns (bool)
  {
    // underlying balance is stored in auscs, so divide by current scaling factor

    // note, this means as scaling factor grows, dust will be untransferrable.
    // minimum transfer value == auscsScalingFactor / 1e24;

    // get amount in underlying
    uint256 auscValue = fragmentToAusc(value);

    // sub from balance of sender
    _auscBalances[msg.sender] = _auscBalances[msg.sender].sub(auscValue);

    // add to balance of receiver
    _auscBalances[to] = _auscBalances[to].add(auscValue);
    emit Transfer(msg.sender, to, value);

    _moveDelegates(_delegates[msg.sender], _delegates[to], auscValue);
    return true;
  }

  /**
  * @dev Transfer tokens from one address to another.
  * @param from The address you want to send tokens from.
  * @param to The address you want to transfer to.
  * @param value The amount of tokens to be transferred.
  */
  function transferFrom(address from, address to, uint256 value)
  external
  rebaseAtTheEnd
  validRecipient(to)
  returns (bool)
  {
    // decrease allowance
    _allowedFragments[from][msg.sender] = _allowedFragments[from][msg.sender].sub(value);

    // get value in auscs
    uint256 auscValue = fragmentToAusc(value);

    // sub from from
    _auscBalances[from] = _auscBalances[from].sub(auscValue);
    _auscBalances[to] = _auscBalances[to].add(auscValue);
    emit Transfer(from, to, value);

    _moveDelegates(_delegates[from], _delegates[to], auscValue);
    return true;
  }

  /**
  * @param who The address to query.
  * @return The balance of the specified address.
  */
  function balanceOf(address who)
  external
  view
  returns (uint256)
  {
    return auscToFragment(_auscBalances[who]);
  }

  /** @notice Currently returns the internal storage amount
  * @param who The address to query.
  * @return The underlying balance of the specified address.
  */
  function balanceOfUnderlying(address who)
  external
  view
  returns (uint256)
  {
    return _auscBalances[who];
  }

  /**
   * @dev Function to check the amount of tokens that an owner has allowed to a spender.
   * @param owner_ The address which owns the funds.
   * @param spender The address which will spend the funds.
   * @return The number of tokens still available for the spender.
   */
  function allowance(address owner_, address spender)
  external
  view
  returns (uint256)
  {
    return _allowedFragments[owner_][spender];
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of
   * msg.sender. This method is included for ERC20 compatibility.
   * increaseAllowance and decreaseAllowance should be used instead.
   * Changing an allowance with this method brings the risk that someone may transfer both
   * the old and the new allowance - if they are both greater than zero - if a transfer
   * transaction is mined before the later approve() call is mined.
   *
   * @param spender The address which will spend the funds.
   * @param value The amount of tokens to be spent.
   */
  function approve(address spender, uint256 value)
  external
  rebaseAtTheEnd
  returns (bool)
  {
    _allowedFragments[msg.sender][spender] = value;
    emit Approval(msg.sender, spender, value);
    return true;
  }

  /**
   * @dev Increase the amount of tokens that an owner has allowed to a spender.
   * This method should be used instead of approve() to avoid the double approval vulnerability
   * described above.
   * @param spender The address which will spend the funds.
   * @param addedValue The amount of tokens to increase the allowance by.
   */
  function increaseAllowance(address spender, uint256 addedValue)
  external
  rebaseAtTheEnd
  returns (bool)
  {
    _allowedFragments[msg.sender][spender] =
    _allowedFragments[msg.sender][spender].add(addedValue);
    emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner has allowed to a spender.
   *
   * @param spender The address which will spend the funds.
   * @param subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseAllowance(address spender, uint256 subtractedValue)
  external
  rebaseAtTheEnd
  returns (bool)
  {
    uint256 oldValue = _allowedFragments[msg.sender][spender];
    if (subtractedValue >= oldValue) {
      _allowedFragments[msg.sender][spender] = 0;
    } else {
      _allowedFragments[msg.sender][spender] = oldValue.sub(subtractedValue);
    }
    emit Approval(msg.sender, spender, _allowedFragments[msg.sender][spender]);
    return true;
  }

  /* - Governance Functions - */

  /** @notice sets the rebaser
   * @param rebaser_ The address of the rebaser contract to use for authentication.
   */
  function _setRebaser(address rebaser_)
  external
  onlyGov
  {
    address oldRebaser = rebaser;
    rebaser = rebaser_;
    emit NewRebaser(oldRebaser, rebaser_);
  }

  /** @notice sets the pendingGov
   * @param pendingGov_ The address of the rebaser contract to use for authentication.
   */
  function _setPendingGov(address pendingGov_)
  external
  onlyGov
  {
    address oldPendingGov = pendingGov;
    pendingGov = pendingGov_;
    emit NewPendingGov(oldPendingGov, pendingGov_);
  }

  /** @notice lets msg.sender accept governance
   *
   */
  function _acceptGov()
  external
  {
    require(msg.sender == pendingGov, "!pending");
    address oldGov = gov;
    gov = pendingGov;
    pendingGov = address(0);
    emit NewGov(oldGov, gov);
  }

  /* - Extras - */

  /**
  * @notice Initiates a new rebase operation, provided the minimum time period has elapsed.
  *
  * @dev The supply adjustment equals (totalSupply * DeviationFromTargetRate) / rebaseLag
  *      Where DeviationFromTargetRate is (MarketOracleRate - targetRate) / targetRate
  *      and targetRate is CpiOracleRate / baseCpi
  */
  function rebase(
    uint256 epoch,
    uint256 indexDelta,
    bool positive
  )
  external
  onlyRebaser
  returns (uint256)
  {
    // no change
    if (indexDelta == 0) {
      emit Rebase(epoch, auscsScalingFactor, auscsScalingFactor);
      return totalSupply;
    }

    // for events
    uint256 prevAuscsScalingFactor = auscsScalingFactor;


    if (!positive) {
      // negative rebase, decrease scaling factor
      auscsScalingFactor = auscsScalingFactor.mul(BASE.sub(indexDelta)).div(BASE);
    } else {
      // positive reabse, increase scaling factor
      uint256 newScalingFactor = auscsScalingFactor.mul(BASE.add(indexDelta)).div(BASE);
      if (newScalingFactor < _maxScalingFactor()) {
        auscsScalingFactor = newScalingFactor;
      } else {
        auscsScalingFactor = _maxScalingFactor();
      }
    }

    // update total supply, correctly
    totalSupply = auscToFragment(initSupply);

    emit Rebase(epoch, prevAuscsScalingFactor, auscsScalingFactor);
    return totalSupply;
  }

  function auscToFragment(uint256 ausc)
  public
  view
  returns (uint256)
  {
    return ausc.mul(auscsScalingFactor).div(internalDecimals);
  }

  function fragmentToAusc(uint256 value)
  public
  view
  returns (uint256)
  {
    return value.mul(internalDecimals).div(auscsScalingFactor);
  }

  // Rescue tokens
  function rescueTokens(
    address token,
    address to,
    uint256 amount
  )
  external
  onlyGov
  returns (bool)
  {
    // transfer to
    SafeERC20.safeTransfer(IERC20(token), to, amount);
    return true;
  }
}

contract AUSC is AUSCToken {

  constructor() public {}

  /**
   * @notice Initialize the new money market
   * @param name_ ERC-20 name of this token
   * @param symbol_ ERC-20 symbol of this token
   * @param decimals_ ERC-20 decimal precision of this token
   */
  function initialize(
    string memory name_,
    string memory symbol_,
    uint8 decimals_,
    address initial_owner,
    uint256 initTotalSupply_
  )
  public
  {
    super.initialize(name_, symbol_, decimals_);

    auscsScalingFactor = BASE;
    initSupply = fragmentToAusc(initTotalSupply_);
    totalSupply = initTotalSupply_;
    _auscBalances[initial_owner] = initSupply;
    gov = initial_owner;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldGov","type":"address"},{"indexed":false,"internalType":"address","name":"newGov","type":"address"}],"name":"NewGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingGov","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingGov","type":"address"}],"name":"NewPendingGov","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldRebaser","type":"address"},{"indexed":false,"internalType":"address","name":"newRebaser","type":"address"}],"name":"NewRebaser","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"epoch","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"prevAuscsScalingFactor","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newAuscsScalingFactor","type":"uint256"}],"name":"Rebase","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"_acceptGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"pendingGov_","type":"address"}],"name":"_setPendingGov","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"rebaser_","type":"address"}],"name":"_setRebaser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner_","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"ausc","type":"uint256"}],"name":"auscToFragment","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"auscsScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"who","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"fragmentToAusc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address","name":"initial_owner","type":"address"},{"internalType":"uint256","name":"initTotalSupply_","type":"uint256"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"internalDecimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxScalingFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingGov","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"epoch","type":"uint256"},{"internalType":"uint256","name":"indexDelta","type":"uint256"},{"internalType":"bool","name":"positive","type":"bool"}],"name":"rebase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rebaser","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

608060405234801561001057600080fd5b50612735806100206000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80636c94522111610130578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e146108c5578063ec342ad0146108f3578063f1127ed8146108fb578063f68a4d371461094d578063fa8f34551461096a57610227565b8063a9059cbb14610818578063b4b5ea5714610844578063c894c4441461086a578063cbeb17a314610887578063cea9d26f1461088f57610227565b8063782d6fe1116100ff578063782d6fe1146107855780637af548c1146107b157806395d89b41146107dc57806397d63f93146107e4578063a457c2d7146107ec57610227565b80636c945221146105ba5780636fcfff45146106fa57806370a082311461073957806373f03dff1461075f57610227565b8063313ce567116101b357806342966c681161018257806342966c68146105415780634bda2e201461055e578063587cde1e146105665780635c19a95c1461058c57806364dd48f5146105b257610227565b8063313ce567146104a557806339509351146104c35780633af9e669146104ef57806340c10f191461051557610227565b806312d43a51116101fa57806312d43a51146103275780631624f6c61461032f57806318160ddd1461045f57806323b872dd14610467578063252408101461049d57610227565b806306fdde031461022c578063095ea7b3146102a957806311d3e6c4146102e957806311fd8a8314610303575b600080fd5b610234610990565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610a1e565b604080519115158252519081900360200190f35b6102f1610afe565b60408051918252519081900360200190f35b61030b610b0e565b604080516001600160a01b039092168252519081900360200190f35b61030b610b1d565b61045d6004803603606081101561034557600080fd5b810190602081018135600160201b81111561035f57600080fd5b82018360208201111561037157600080fd5b803590602001918460018302840111600160201b8311171561039257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103e457600080fd5b8201836020820111156103f657600080fd5b803590602001918460018302840111600160201b8311171561041757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610b319050565b005b6102f1610bbc565b6102d56004803603606081101561047d57600080fd5b506001600160a01b03813581169160208101359091169060400135610bc2565b61030b610db1565b6104ad610dc0565b6040805160ff9092168252519081900360200190f35b6102d5600480360360408110156104d957600080fd5b506001600160a01b038135169060200135610dc9565b6102f16004803603602081101561050557600080fd5b50356001600160a01b0316610eba565b6102d56004803603604081101561052b57600080fd5b506001600160a01b038135169060200135610ed5565b6102d56004803603602081101561055757600080fd5b5035610f51565b61045d610f65565b61030b6004803603602081101561057c57600080fd5b50356001600160a01b0316611030565b61045d600480360360208110156105a257600080fd5b50356001600160a01b031661104e565b6102f161105b565b61045d600480360360a08110156105d057600080fd5b810190602081018135600160201b8111156105ea57600080fd5b8201836020820111156105fc57600080fd5b803590602001918460018302840111600160201b8311171561061d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561066f57600080fd5b82018360208201111561068157600080fd5b803590602001918460018302840111600160201b831117156106a257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff1692505060208101356001600160a01b03169060400135611069565b6107206004803603602081101561071057600080fd5b50356001600160a01b03166110d2565b6040805163ffffffff9092168252519081900360200190f35b6102f16004803603602081101561074f57600080fd5b50356001600160a01b03166110ea565b61045d6004803603602081101561077557600080fd5b50356001600160a01b031661110c565b6102f16004803603604081101561079b57600080fd5b506001600160a01b0381351690602001356111c5565b6102f1600480360360608110156107c757600080fd5b508035906020810135906040013515156113cd565b610234611529565b6102f1611583565b6102d56004803603604081101561080257600080fd5b506001600160a01b038135169060200135611589565b6102d56004803603604081101561082e57600080fd5b506001600160a01b0381351690602001356116d1565b6102f16004803603602081101561085a57600080fd5b50356001600160a01b0316611857565b6102f16004803603602081101561088057600080fd5b50356118ba565b6102f16118de565b6102d5600480360360608110156108a557600080fd5b506001600160a01b038135811691602081013590911690604001356118e4565b6102f1600480360360408110156108db57600080fd5b506001600160a01b0381358116916020013516611952565b6102f161197d565b61092d6004803603604081101561091157600080fd5b5080356001600160a01b0316906020013563ffffffff16611989565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102f16004803603602081101561096357600080fd5b50356119b6565b61045d6004803603602081101561098057600080fd5b50356001600160a01b03166119db565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060013332148015610a9757506004546001600160a01b031615155b15610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b505af1158015610af3573d6000803e3d6000fd5b505050505b92915050565b6000610b08611a94565b90505b90565b6004546001600160a01b031681565b60025461010090046001600160a01b031681565b60065415610b7c576040805162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b8251610b8f90600090602086019061258b565b508151610ba390600190602085019061258b565b506002805460ff191660ff929092169190911790555050565b60055481565b6000826001600160a01b038116610bd857600080fd5b6001600160a01b038116301415610bee57600080fd5b6001600160a01b0385166000908152600860209081526040808320338452909152902054610c22908463ffffffff611aa916565b6001600160a01b0386166000908152600860209081526040808320338452909152812091909155610c52846118ba565b6001600160a01b038716600090815260076020526040902054909150610c7e908263ffffffff611aa916565b6001600160a01b038088166000908152600760205260408082209390935590871681522054610cb3908263ffffffff611aeb16565b6001600160a01b0380871660008181526007602090815260409182902094909455805188815290519193928a16926000805160206126b783398151915292918290030190a36001600160a01b038087166000908152600a6020526040808220548884168352912054610d2a92918216911683611b45565b6001925050503332148015610d4957506004546001600160a01b031615155b15610daa57600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050505b9392505050565b6003546001600160a01b031681565b60025460ff1681565b3360009081526008602090815260408083206001600160a01b0386168452909152812054610dfd908363ffffffff611aeb16565b3360008181526008602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060013332148015610a9757506004546001600160a01b031615610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b6001600160a01b031660009081526007602052604090205490565b6004546000906001600160a01b0316331480610f00575060025461010090046001600160a01b031633145b610f3e576040805162461bcd60e51b815260206004820152600a6024820152693737ba1036b4b73a32b960b11b604482015290519081900360640190fd5b610f488383611c97565b50600192915050565b6000610f5d3383611e01565b506001919050565b6003546001600160a01b03163314610faf576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60028054600380546001600160a01b03818116610100908102610100600160a81b0319861617958690556001600160a01b031990921690925560408051938290048316808552919094049091166020830152825190927f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d5523928290030190a150565b6001600160a01b039081166000908152600a60205260409020541690565b6110583382611f6c565b50565b69d3c21bcecceda100000081565b611074858585610b31565b670de0b6b3a7640000600655611089816118ba565b60098190556005919091556001600160a01b039190911660008181526007602052604090209190915560028054610100600160a81b031916610100909202919091179055505050565b600c6020526000908152604090205463ffffffff1681565b6001600160a01b038116600090815260076020526040812054610af8906119b6565b60025461010090046001600160a01b03163314611162576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b600380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b60004382106112055760405162461bcd60e51b81526004018080602001828103825260278152602001806126906027913960400191505060405180910390fd5b6001600160a01b0383166000908152600c602052604090205463ffffffff1680611233576000915050610af8565b6001600160a01b0384166000908152600b6020908152604080832063ffffffff6000198601811685529252909120541683106112a2576001600160a01b0384166000908152600b602090815260408083206000199490940163ffffffff16835292905220600101549050610af8565b6001600160a01b0384166000908152600b6020908152604080832083805290915290205463ffffffff168310156112dd576000915050610af8565b600060001982015b8163ffffffff168163ffffffff16111561139657600282820363ffffffff1604810361130f612609565b506001600160a01b0387166000908152600b6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561137157602001519450610af89350505050565b805163ffffffff168711156113885781935061138f565b6001820392505b50506112e5565b506001600160a01b0385166000908152600b6020908152604080832063ffffffff9094168352929052206001015491505092915050565b6004546000906001600160a01b031633146113e757600080fd5b8261143857600654604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150600554610daa565b600654826114825761147a670de0b6b3a764000061146e61145f828863ffffffff611aa916565b6006549063ffffffff611fec16565b9063ffffffff61204516565b6006556114cc565b60006114a3670de0b6b3a764000061146e61145f828963ffffffff611aeb16565b90506114ad611a94565b8110156114be5760068190556114ca565b6114c6611a94565b6006555b505b6114d76009546119b6565b600555600654604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150506005549392505050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a165780601f106109eb57610100808354040283529160200191610a16565b60095481565b3360009081526008602090815260408083206001600160a01b03861684529091528120548083106115dd573360009081526008602090815260408083206001600160a01b0388168452909152812055611612565b6115ed818463ffffffff611aa916565b3360009081526008602090815260408083206001600160a01b03891684529091529020555b3360008181526008602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150503332148015610a9757506004546001600160a01b031615610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b6000826001600160a01b0381166116e757600080fd5b6001600160a01b0381163014156116fd57600080fd5b6000611708846118ba565b3360009081526007602052604090205490915061172b908263ffffffff611aa916565b33600090815260076020526040808220929092556001600160a01b0387168152205461175d908263ffffffff611aeb16565b6001600160a01b0386166000818152600760209081526040918290209390935580518781529051919233926000805160206126b78339815191529281900390910190a3336000908152600a6020526040808220546001600160a01b03888116845291909220546117d1928216911683611b45565b600192505033321480156117ef57506004546001600160a01b031615155b1561185057600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b15801561183757600080fd5b505af115801561184b573d6000803e3d6000fd5b505050505b5092915050565b6001600160a01b0381166000908152600c602052604081205463ffffffff1680611882576000610daa565b6001600160a01b0383166000908152600b6020908152604080832063ffffffff60001986011684529091529020600101549392505050565b600654600090610af89061146e8469d3c21bcecceda100000063ffffffff611fec16565b60065481565b60025460009061010090046001600160a01b0316331461193d576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b611948848484612087565b5060019392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b670de0b6b3a764000081565b600b6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6000610af869d3c21bcecceda100000061146e60065485611fec90919063ffffffff16565b60025461010090046001600160a01b03163314611a31576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b600480546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f51f448520e2183de499e224808a409ee01a1f380edb2e8497572320c15030545929181900390910190a15050565b600060095460001981611aa357fe5b04905090565b6000610daa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120d9565b600082820183811015610daa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614158015611b675750600081115b15611c92576001600160a01b03831615611bff576001600160a01b0383166000908152600c602052604081205463ffffffff169081611ba7576000611bd9565b6001600160a01b0385166000908152600b6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611bed828563ffffffff611aa916565b9050611bfb86848484612170565b5050505b6001600160a01b03821615611c92576001600160a01b0382166000908152600c602052604081205463ffffffff169081611c3a576000611c6c565b6001600160a01b0384166000908152600b6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611c80828563ffffffff611aeb16565b9050611c8e85848484612170565b5050505b505050565b600554611caa908263ffffffff611aeb16565b6005556000611cb8826118ba565b600954909150611cce908263ffffffff611aeb16565b600955611cd9611a94565b6006541115611d2c576040805162461bcd60e51b815260206004820152601a6024820152796d6178207363616c696e6720666163746f7220746f6f206c6f7760301b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054611d55908263ffffffff611aeb16565b6001600160a01b03808516600090815260076020908152604080832094909455600a905291822054611d8992911683611b45565b604080516001600160a01b03851681526020810184905281517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885929181900390910190a16040805183815290516001600160a01b038516916000916000805160206126b78339815191529181900360200190a3505050565b600554611e14908263ffffffff611aa916565b6005556000611e22826118ba565b600954909150611e38908263ffffffff611aa916565b600955611e43611a94565b6006541115611e96576040805162461bcd60e51b815260206004820152601a6024820152796d6178207363616c696e6720666163746f7220746f6f206c6f7760301b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054611ebf908263ffffffff611aa916565b6001600160a01b03808516600090815260076020908152604080832094909455600a905291822054611ef49291169083611b45565b604080516001600160a01b03851681526020810184905281517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929181900390910190a16040805183815290516000916001600160a01b038616916000805160206126b78339815191529181900360200190a3505050565b6001600160a01b038083166000818152600a6020818152604080842080546007845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611fe6828483611b45565b50505050565b600082611ffb57506000610af8565b8282028284828161200857fe5b0414610daa5760405162461bcd60e51b815260040180806020018281038252602181526020018061266f6021913960400191505060405180910390fd5b6000610daa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122d5565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611c9290849061233a565b600081848411156121685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212d578181015183820152602001612115565b50505050905090810190601f16801561215a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006121944360405180606001604052806034815260200161263b603491396124f2565b905060008463ffffffff161180156121dd57506001600160a01b0385166000908152600b6020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561221a576001600160a01b0385166000908152600b6020908152604080832063ffffffff6000198901168452909152902060010182905561228b565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600b84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600c9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836123245760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212d578181015183820152602001612115565b50600083858161233057fe5b0495945050505050565b61234c826001600160a01b031661254f565b61239d576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106123db5780518252601f1990920191602091820191016123bc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461243d576040519150601f19603f3d011682016040523d82523d6000602084013e612442565b606091505b509150915081612499576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611fe6578080602001905160208110156124b557600080fd5b5051611fe65760405162461bcd60e51b815260040180806020018281038252602a8152602001806126d7602a913960400191505060405180910390fd5b600081600160201b84106125475760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212d578181015183820152602001612115565b509192915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061258357508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106125cc57805160ff19168380011785556125f9565b828001600101855582156125f9579182015b828111156125f95782518255916020019190600101906125de565b50612605929150612620565b5090565b604080518082019091526000808252602082015290565b610b0b91905b80821115612605576000815560010161262656fe415553433a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77415553433a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820d9bd5bbf6a7224c0dd8694a5e4b54b91925e64709621c62bc7363888edb7e44564736f6c63430005100032

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80636c94522111610130578063a9059cbb116100b8578063dd62ed3e1161007c578063dd62ed3e146108c5578063ec342ad0146108f3578063f1127ed8146108fb578063f68a4d371461094d578063fa8f34551461096a57610227565b8063a9059cbb14610818578063b4b5ea5714610844578063c894c4441461086a578063cbeb17a314610887578063cea9d26f1461088f57610227565b8063782d6fe1116100ff578063782d6fe1146107855780637af548c1146107b157806395d89b41146107dc57806397d63f93146107e4578063a457c2d7146107ec57610227565b80636c945221146105ba5780636fcfff45146106fa57806370a082311461073957806373f03dff1461075f57610227565b8063313ce567116101b357806342966c681161018257806342966c68146105415780634bda2e201461055e578063587cde1e146105665780635c19a95c1461058c57806364dd48f5146105b257610227565b8063313ce567146104a557806339509351146104c35780633af9e669146104ef57806340c10f191461051557610227565b806312d43a51116101fa57806312d43a51146103275780631624f6c61461032f57806318160ddd1461045f57806323b872dd14610467578063252408101461049d57610227565b806306fdde031461022c578063095ea7b3146102a957806311d3e6c4146102e957806311fd8a8314610303575b600080fd5b610234610990565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610a1e565b604080519115158252519081900360200190f35b6102f1610afe565b60408051918252519081900360200190f35b61030b610b0e565b604080516001600160a01b039092168252519081900360200190f35b61030b610b1d565b61045d6004803603606081101561034557600080fd5b810190602081018135600160201b81111561035f57600080fd5b82018360208201111561037157600080fd5b803590602001918460018302840111600160201b8311171561039257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156103e457600080fd5b8201836020820111156103f657600080fd5b803590602001918460018302840111600160201b8311171561041757600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610b319050565b005b6102f1610bbc565b6102d56004803603606081101561047d57600080fd5b506001600160a01b03813581169160208101359091169060400135610bc2565b61030b610db1565b6104ad610dc0565b6040805160ff9092168252519081900360200190f35b6102d5600480360360408110156104d957600080fd5b506001600160a01b038135169060200135610dc9565b6102f16004803603602081101561050557600080fd5b50356001600160a01b0316610eba565b6102d56004803603604081101561052b57600080fd5b506001600160a01b038135169060200135610ed5565b6102d56004803603602081101561055757600080fd5b5035610f51565b61045d610f65565b61030b6004803603602081101561057c57600080fd5b50356001600160a01b0316611030565b61045d600480360360208110156105a257600080fd5b50356001600160a01b031661104e565b6102f161105b565b61045d600480360360a08110156105d057600080fd5b810190602081018135600160201b8111156105ea57600080fd5b8201836020820111156105fc57600080fd5b803590602001918460018302840111600160201b8311171561061d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561066f57600080fd5b82018360208201111561068157600080fd5b803590602001918460018302840111600160201b831117156106a257600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff1692505060208101356001600160a01b03169060400135611069565b6107206004803603602081101561071057600080fd5b50356001600160a01b03166110d2565b6040805163ffffffff9092168252519081900360200190f35b6102f16004803603602081101561074f57600080fd5b50356001600160a01b03166110ea565b61045d6004803603602081101561077557600080fd5b50356001600160a01b031661110c565b6102f16004803603604081101561079b57600080fd5b506001600160a01b0381351690602001356111c5565b6102f1600480360360608110156107c757600080fd5b508035906020810135906040013515156113cd565b610234611529565b6102f1611583565b6102d56004803603604081101561080257600080fd5b506001600160a01b038135169060200135611589565b6102d56004803603604081101561082e57600080fd5b506001600160a01b0381351690602001356116d1565b6102f16004803603602081101561085a57600080fd5b50356001600160a01b0316611857565b6102f16004803603602081101561088057600080fd5b50356118ba565b6102f16118de565b6102d5600480360360608110156108a557600080fd5b506001600160a01b038135811691602081013590911690604001356118e4565b6102f1600480360360408110156108db57600080fd5b506001600160a01b0381358116916020013516611952565b6102f161197d565b61092d6004803603604081101561091157600080fd5b5080356001600160a01b0316906020013563ffffffff16611989565b6040805163ffffffff909316835260208301919091528051918290030190f35b6102f16004803603602081101561096357600080fd5b50356119b6565b61045d6004803603602081101561098057600080fd5b50356001600160a01b03166119db565b6000805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a165780601f106109eb57610100808354040283529160200191610a16565b820191906000526020600020905b8154815290600101906020018083116109f957829003601f168201915b505050505081565b3360008181526008602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060013332148015610a9757506004546001600160a01b031615155b15610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b505af1158015610af3573d6000803e3d6000fd5b505050505b92915050565b6000610b08611a94565b90505b90565b6004546001600160a01b031681565b60025461010090046001600160a01b031681565b60065415610b7c576040805162461bcd60e51b8152602060048201526013602482015272185b1c9958591e481a5b9a5d1a585b1a5e9959606a1b604482015290519081900360640190fd5b8251610b8f90600090602086019061258b565b508151610ba390600190602085019061258b565b506002805460ff191660ff929092169190911790555050565b60055481565b6000826001600160a01b038116610bd857600080fd5b6001600160a01b038116301415610bee57600080fd5b6001600160a01b0385166000908152600860209081526040808320338452909152902054610c22908463ffffffff611aa916565b6001600160a01b0386166000908152600860209081526040808320338452909152812091909155610c52846118ba565b6001600160a01b038716600090815260076020526040902054909150610c7e908263ffffffff611aa916565b6001600160a01b038088166000908152600760205260408082209390935590871681522054610cb3908263ffffffff611aeb16565b6001600160a01b0380871660008181526007602090815260409182902094909455805188815290519193928a16926000805160206126b783398151915292918290030190a36001600160a01b038087166000908152600a6020526040808220548884168352912054610d2a92918216911683611b45565b6001925050503332148015610d4957506004546001600160a01b031615155b15610daa57600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610d9157600080fd5b505af1158015610da5573d6000803e3d6000fd5b505050505b9392505050565b6003546001600160a01b031681565b60025460ff1681565b3360009081526008602090815260408083206001600160a01b0386168452909152812054610dfd908363ffffffff611aeb16565b3360008181526008602090815260408083206001600160a01b0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a35060013332148015610a9757506004546001600160a01b031615610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b6001600160a01b031660009081526007602052604090205490565b6004546000906001600160a01b0316331480610f00575060025461010090046001600160a01b031633145b610f3e576040805162461bcd60e51b815260206004820152600a6024820152693737ba1036b4b73a32b960b11b604482015290519081900360640190fd5b610f488383611c97565b50600192915050565b6000610f5d3383611e01565b506001919050565b6003546001600160a01b03163314610faf576040805162461bcd60e51b81526020600482015260086024820152672170656e64696e6760c01b604482015290519081900360640190fd5b60028054600380546001600160a01b03818116610100908102610100600160a81b0319861617958690556001600160a01b031990921690925560408051938290048316808552919094049091166020830152825190927f1f14cfc03e486d23acee577b07bc0b3b23f4888c91fcdba5e0fef5a2549d5523928290030190a150565b6001600160a01b039081166000908152600a60205260409020541690565b6110583382611f6c565b50565b69d3c21bcecceda100000081565b611074858585610b31565b670de0b6b3a7640000600655611089816118ba565b60098190556005919091556001600160a01b039190911660008181526007602052604090209190915560028054610100600160a81b031916610100909202919091179055505050565b600c6020526000908152604090205463ffffffff1681565b6001600160a01b038116600090815260076020526040812054610af8906119b6565b60025461010090046001600160a01b03163314611162576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b600380546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f6163d5b9efd962645dd649e6e48a61bcb0f9df00997a2398b80d135a9ab0c61e929181900390910190a15050565b60004382106112055760405162461bcd60e51b81526004018080602001828103825260278152602001806126906027913960400191505060405180910390fd5b6001600160a01b0383166000908152600c602052604090205463ffffffff1680611233576000915050610af8565b6001600160a01b0384166000908152600b6020908152604080832063ffffffff6000198601811685529252909120541683106112a2576001600160a01b0384166000908152600b602090815260408083206000199490940163ffffffff16835292905220600101549050610af8565b6001600160a01b0384166000908152600b6020908152604080832083805290915290205463ffffffff168310156112dd576000915050610af8565b600060001982015b8163ffffffff168163ffffffff16111561139657600282820363ffffffff1604810361130f612609565b506001600160a01b0387166000908152600b6020908152604080832063ffffffff80861685529083529281902081518083019092528054909316808252600190930154918101919091529087141561137157602001519450610af89350505050565b805163ffffffff168711156113885781935061138f565b6001820392505b50506112e5565b506001600160a01b0385166000908152600b6020908152604080832063ffffffff9094168352929052206001015491505092915050565b6004546000906001600160a01b031633146113e757600080fd5b8261143857600654604080518681526020810183905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150600554610daa565b600654826114825761147a670de0b6b3a764000061146e61145f828863ffffffff611aa916565b6006549063ffffffff611fec16565b9063ffffffff61204516565b6006556114cc565b60006114a3670de0b6b3a764000061146e61145f828963ffffffff611aeb16565b90506114ad611a94565b8110156114be5760068190556114ca565b6114c6611a94565b6006555b505b6114d76009546119b6565b600555600654604080518781526020810184905280820192909252517fc6642d24d84e7f3d36ca39f5cce10e75639d9b158d5193aa350e2f900653e4c09181900360600190a150506005549392505050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a165780601f106109eb57610100808354040283529160200191610a16565b60095481565b3360009081526008602090815260408083206001600160a01b03861684529091528120548083106115dd573360009081526008602090815260408083206001600160a01b0388168452909152812055611612565b6115ed818463ffffffff611aa916565b3360009081526008602090815260408083206001600160a01b03891684529091529020555b3360008181526008602090815260408083206001600160a01b0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a360019150503332148015610a9757506004546001600160a01b031615610af857600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b158015610adf57600080fd5b6000826001600160a01b0381166116e757600080fd5b6001600160a01b0381163014156116fd57600080fd5b6000611708846118ba565b3360009081526007602052604090205490915061172b908263ffffffff611aa916565b33600090815260076020526040808220929092556001600160a01b0387168152205461175d908263ffffffff611aeb16565b6001600160a01b0386166000818152600760209081526040918290209390935580518781529051919233926000805160206126b78339815191529281900390910190a3336000908152600a6020526040808220546001600160a01b03888116845291909220546117d1928216911683611b45565b600192505033321480156117ef57506004546001600160a01b031615155b1561185057600480546040805163ed49c02560e01b815290516001600160a01b039092169263ed49c02592828201926000929082900301818387803b15801561183757600080fd5b505af115801561184b573d6000803e3d6000fd5b505050505b5092915050565b6001600160a01b0381166000908152600c602052604081205463ffffffff1680611882576000610daa565b6001600160a01b0383166000908152600b6020908152604080832063ffffffff60001986011684529091529020600101549392505050565b600654600090610af89061146e8469d3c21bcecceda100000063ffffffff611fec16565b60065481565b60025460009061010090046001600160a01b0316331461193d576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b611948848484612087565b5060019392505050565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205490565b670de0b6b3a764000081565b600b6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6000610af869d3c21bcecceda100000061146e60065485611fec90919063ffffffff16565b60025461010090046001600160a01b03163314611a31576040805162461bcd60e51b815260206004820152600f60248201526e6f6e6c7920676f7665726e616e636560881b604482015290519081900360640190fd5b600480546001600160a01b038381166001600160a01b0319831681179093556040805191909216808252602082019390935281517f51f448520e2183de499e224808a409ee01a1f380edb2e8497572320c15030545929181900390910190a15050565b600060095460001981611aa357fe5b04905090565b6000610daa83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506120d9565b600082820183811015610daa576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b816001600160a01b0316836001600160a01b031614158015611b675750600081115b15611c92576001600160a01b03831615611bff576001600160a01b0383166000908152600c602052604081205463ffffffff169081611ba7576000611bd9565b6001600160a01b0385166000908152600b6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611bed828563ffffffff611aa916565b9050611bfb86848484612170565b5050505b6001600160a01b03821615611c92576001600160a01b0382166000908152600c602052604081205463ffffffff169081611c3a576000611c6c565b6001600160a01b0384166000908152600b6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611c80828563ffffffff611aeb16565b9050611c8e85848484612170565b5050505b505050565b600554611caa908263ffffffff611aeb16565b6005556000611cb8826118ba565b600954909150611cce908263ffffffff611aeb16565b600955611cd9611a94565b6006541115611d2c576040805162461bcd60e51b815260206004820152601a6024820152796d6178207363616c696e6720666163746f7220746f6f206c6f7760301b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054611d55908263ffffffff611aeb16565b6001600160a01b03808516600090815260076020908152604080832094909455600a905291822054611d8992911683611b45565b604080516001600160a01b03851681526020810184905281517f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885929181900390910190a16040805183815290516001600160a01b038516916000916000805160206126b78339815191529181900360200190a3505050565b600554611e14908263ffffffff611aa916565b6005556000611e22826118ba565b600954909150611e38908263ffffffff611aa916565b600955611e43611a94565b6006541115611e96576040805162461bcd60e51b815260206004820152601a6024820152796d6178207363616c696e6720666163746f7220746f6f206c6f7760301b604482015290519081900360640190fd5b6001600160a01b038316600090815260076020526040902054611ebf908263ffffffff611aa916565b6001600160a01b03808516600090815260076020908152604080832094909455600a905291822054611ef49291169083611b45565b604080516001600160a01b03851681526020810184905281517fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5929181900390910190a16040805183815290516000916001600160a01b038616916000805160206126b78339815191529181900360200190a3505050565b6001600160a01b038083166000818152600a6020818152604080842080546007845282862054949093528787166001600160a01b03198416811790915590519190951694919391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611fe6828483611b45565b50505050565b600082611ffb57506000610af8565b8282028284828161200857fe5b0414610daa5760405162461bcd60e51b815260040180806020018281038252602181526020018061266f6021913960400191505060405180910390fd5b6000610daa83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506122d5565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611c9290849061233a565b600081848411156121685760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561212d578181015183820152602001612115565b50505050905090810190601f16801561215a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60006121944360405180606001604052806034815260200161263b603491396124f2565b905060008463ffffffff161180156121dd57506001600160a01b0385166000908152600b6020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561221a576001600160a01b0385166000908152600b6020908152604080832063ffffffff6000198901168452909152902060010182905561228b565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600b84528681208b8616825284528681209551865490861663ffffffff199182161787559251600196870155908152600c9092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836123245760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212d578181015183820152602001612115565b50600083858161233057fe5b0495945050505050565b61234c826001600160a01b031661254f565b61239d576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106123db5780518252601f1990920191602091820191016123bc565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d806000811461243d576040519150601f19603f3d011682016040523d82523d6000602084013e612442565b606091505b509150915081612499576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115611fe6578080602001905160208110156124b557600080fd5b5051611fe65760405162461bcd60e51b815260040180806020018281038252602a8152602001806126d7602a913960400191505060405180910390fd5b600081600160201b84106125475760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561212d578181015183820152602001612115565b509192915050565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061258357508115155b949350505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106125cc57805160ff19168380011785556125f9565b828001600101855582156125f9579182015b828111156125f95782518255916020019190600101906125de565b50612605929150612620565b5090565b604080518082019091526000808252602082015290565b610b0b91905b80821115612605576000815560010161262656fe415553433a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77415553433a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820d9bd5bbf6a7224c0dd8694a5e4b54b91925e64709621c62bc7363888edb7e44564736f6c63430005100032

Deployed Bytecode Sourcemap

40708:708:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40708:708:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8010:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8010:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36119:225;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36119:225:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30280:111;;;:::i;:::-;;;;;;;;;;;;;;;;8458:22;;;:::i;:::-;;;;-1:-1:-1;;;;;8458:22:0;;;;;;;;;;;;;;8273:18;;;:::i;29955:251::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29955:251:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;29955:251:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29955:251:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29955:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29955:251:0;;;;;;;;-1:-1:-1;29955:251:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;29955:251:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;29955:251:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;29955:251:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;29955:251:0;;-1:-1:-1;;;29955:251:0;;;;;-1:-1:-1;29955:251:0;;-1:-1:-1;29955:251:0:i;:::-;;8536:26;;;:::i;33917:606::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33917:606:0;;;;;;;;;;;;;;;;;:::i;8363:25::-;;;:::i;8190:21::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;36701:327;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;36701:327:0;;;;;;;;:::i;34934:124::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34934:124:0;-1:-1:-1;;;;;34934:124:0;;:::i;30851:137::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30851:137:0;;;;;;;;:::i;31792:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31792:120:0;;:::i;38503:206::-;;;:::i;14594:149::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14594:149:0;-1:-1:-1;;;;;14594:149:0;;:::i;14887:104::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14887:104:0;-1:-1:-1;;;;;14887:104:0;;:::i;8645:51::-;;;:::i;40987:426::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;40987:426:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40987:426:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40987:426:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40987:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40987:426:0;;;;;;;;-1:-1:-1;40987:426:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;40987:426:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40987:426:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40987:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40987:426:0;;-1:-1:-1;;;40987:426:0;;;;;-1:-1:-1;;40987:426:0;;;;-1:-1:-1;;;;;40987:426:0;;;;;;:::i;2211:49::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2211:49:0;-1:-1:-1;;;;;2211:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;34631:130;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34631:130:0;-1:-1:-1;;;;;34631:130:0;;:::i;38233:202::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38233:202:0;-1:-1:-1;;;;;38233:202:0;;:::i;15878:1253::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15878:1253:0;;;;;;;;:::i;39079:1053::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;39079:1053:0;;;;;;;;;;;;;;:::i;8098:20::-;;;:::i;9057:25::-;;;:::i;37276:480::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;37276:480:0;;;;;;;;:::i;32898:776::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32898:776:0;;;;;;;;:::i;15192:255::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15192:255:0;-1:-1:-1;;;;;15192:255:0;;:::i;40294:152::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40294:152:0;;:::i;8879:33::-;;;:::i;40472:229::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;40472:229:0;;;;;;;;;;;;;;;;;:::i;35351:150::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;35351:150:0;;;;;;;;;;:::i;8757:39::-;;;:::i;2072:70::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;2072:70:0;;-1:-1:-1;;;;;2072:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;40138:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40138:150:0;;:::i;37922:175::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37922:175:0;-1:-1:-1;;;;;37922:175:0;;:::i;8010:18::-;;;;;;;;;;;;;;;-1:-1:-1;;8010:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36119:225::-;36244:10;36210:4;36226:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;36226:38:0;;;;;;;;;;;:46;;;36284:36;;;;;;;36210:4;;36226:38;;36244:10;;36284:36;;;;;;;;-1:-1:-1;36334:4:0;29586:10;29600:9;29586:23;:48;;;;-1:-1:-1;29613:7:0;;-1:-1:-1;;;;;29613:7:0;:21;;29586:48;29582:102;;;29654:7;;;29645:31;;;-1:-1:-1;;;29645:31:0;;;;-1:-1:-1;;;;;29654:7:0;;;;29645:29;;:31;;;;29654:7;;29645:31;;;;;;29654:7;;29645:31;;;5:2:-1;;;;30:1;27;20:12;5:2;29645:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29645:31:0;;;;29582:102;36119:225;;;;:::o;30280:111::-;30340:7;30366:19;:17;:19::i;:::-;30359:26;;30280:111;;:::o;8458:22::-;;;-1:-1:-1;;;;;8458:22:0;;:::o;8273:18::-;;;;;;-1:-1:-1;;;;;8273:18:0;;:::o;29955:251::-;30084:18;;:23;30076:55;;;;;-1:-1:-1;;;30076:55:0;;;;;;;;;;;;-1:-1:-1;;;30076:55:0;;;;;;;;;;;;;;;30138:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;30157:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;30180:8:0;:20;;-1:-1:-1;;30180:20:0;;;;;;;;;;;;-1:-1:-1;;29955:251:0:o;8536:26::-;;;;:::o;33917:606::-;34044:4;34028:2;-1:-1:-1;;;;;29881:18:0;;29873:27;;;;;;-1:-1:-1;;;;;29915:19:0;;29929:4;29915:19;;29907:28;;;;;;-1:-1:-1;;;;;34125:23:0;;;;;;:17;:23;;;;;;;;34149:10;34125:35;;;;;;;;:46;;34165:5;34125:46;:39;:46;:::i;:::-;-1:-1:-1;;;;;34087:23:0;;;;;;:17;:23;;;;;;;;34111:10;34087:35;;;;;;;:84;;;;34227:21;34242:5;34227:14;:21::i;:::-;-1:-1:-1;;;;;34301:19:0;;;;;;:13;:19;;;;;;34207:41;;-1:-1:-1;34301:34:0;;34207:41;34301:34;:23;:34;:::i;:::-;-1:-1:-1;;;;;34279:19:0;;;;;;;:13;:19;;;;;;:56;;;;34362:17;;;;;;;:32;;34384:9;34362:32;:21;:32;:::i;:::-;-1:-1:-1;;;;;34342:17:0;;;;;;;:13;:17;;;;;;;;;:52;;;;34406:25;;;;;;;34342:17;;34406:25;;;;-1:-1:-1;;;;;;;;;;;34406:25:0;;;;;;;;-1:-1:-1;;;;;34455:16:0;;;;;;;:10;:16;;;;;;;34473:14;;;;;;;;34440:59;;34455:16;;;;34473:14;34489:9;34440:14;:59::i;:::-;34513:4;34506:11;;;-1:-1:-1;29586:10:0;29600:9;29586:23;:48;;;;-1:-1:-1;29613:7:0;;-1:-1:-1;;;;;29613:7:0;:21;;29586:48;29582:102;;;29654:7;;;29645:31;;;-1:-1:-1;;;29645:31:0;;;;-1:-1:-1;;;;;29654:7:0;;;;29645:29;;:31;;;;29654:7;;29645:31;;;;;;29654:7;;29645:31;;;5:2:-1;;;;30:1;27;20:12;5:2;29645:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29645:31:0;;;;29582:102;33917:606;;;;;:::o;8363:25::-;;;-1:-1:-1;;;;;8363:25:0;;:::o;8190:21::-;;;;;;:::o;36701:327::-;36887:10;36807:4;36869:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;36869:38:0;;;;;;;;;;:54;;36912:10;36869:54;:42;:54;:::i;:::-;36841:10;36823:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;36823:38:0;;;;;;;;;;;;:100;;;36935:69;;;;;;36823:38;;36935:69;;;;;;;;;;;-1:-1:-1;37018:4:0;29586:10;29600:9;29586:23;:48;;;;-1:-1:-1;29613:7:0;;-1:-1:-1;;;;;29613:7:0;:21;29582:102;;29654:7;;;29645:31;;;-1:-1:-1;;;29645:31:0;;;;-1:-1:-1;;;;;29654:7:0;;;;29645:29;;:31;;;;29654:7;;29645:31;;;;;;29654:7;;29645:31;;;5:2:-1;;;;30:1;27;20:12;34934:124:0;-1:-1:-1;;;;;35034:18:0;35008:7;35034:18;;;:13;:18;;;;;;;34934:124::o;30851:137::-;29754:7;;30931:4;;-1:-1:-1;;;;;29754:7:0;29740:10;:21;;:42;;-1:-1:-1;29779:3:0;;;;;-1:-1:-1;;;;;29779:3:0;29765:10;:17;29740:42;29724:86;;;;;-1:-1:-1;;;29724:86:0;;;;;;;;;;;;-1:-1:-1;;;29724:86:0;;;;;;;;;;;;;;;30947:17;30953:2;30957:6;30947:5;:17::i;:::-;-1:-1:-1;30978:4:0;30851:137;;;;:::o;31792:120::-;31846:4;31863:25;31869:10;31881:6;31863:5;:25::i;:::-;-1:-1:-1;31902:4:0;31792:120;;;:::o;38503:206::-;38569:10;;-1:-1:-1;;;;;38569:10:0;38555;:24;38547:45;;;;;-1:-1:-1;;;38547:45:0;;;;;;;;;;;;-1:-1:-1;;;38547:45:0;;;;;;;;;;;;;;;38616:3;;;38632:10;;;-1:-1:-1;;;;;38632:10:0;;;38616:3;38626:16;;;-1:-1:-1;;;;;;38626:16:0;;;;;;;-1:-1:-1;;;;;;38649:23:0;;;;;;38684:19;;;38616:3;;;;;;38684:19;;;38699:3;;;;;;;38684:19;;;;;;38616:3;;38684:19;;;;;;;;38503:206;:::o;14594:149::-;-1:-1:-1;;;;;14714:21:0;;;14682:7;14714:21;;;:10;:21;;;;;;;;14594:149::o;14887:104::-;14951:32;14961:10;14973:9;14951;:32::i;:::-;14887:104;:::o;8645:51::-;8688:8;8645:51;:::o;40987:426::-;41167:43;41184:5;41191:7;41200:9;41167:16;:43::i;:::-;8788:8;41219:18;:25;41264:32;41279:16;41264:14;:32::i;:::-;41251:10;:45;;;41303:11;:30;;;;-1:-1:-1;;;;;41340:28:0;;;;-1:-1:-1;41340:28:0;;;:13;:28;;;;;:41;;;;41388:3;:19;;-1:-1:-1;;;;;;41388:19:0;;;;;;;;;;;-1:-1:-1;;;40987:426:0:o;2211:49::-;;;;;;;;;;;;;;;:::o;34631:130::-;-1:-1:-1;;;;;34736:18:0;;34695:7;34736:18;;;:13;:18;;;;;;34721:34;;:14;:34::i;38233:202::-;29418:3;;;;;-1:-1:-1;;;;;29418:3:0;29404:10;:17;29396:45;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;;;;38335:10;;;-1:-1:-1;;;;;38352:24:0;;;-1:-1:-1;;;;;;38352:24:0;;;;;;;38388:41;;;38335:10;;;;38388:41;;;;;;;;;;;;;;;;;;;;;;;29448:1;38233:202;:::o;15878:1253::-;15986:7;16033:12;16019:11;:26;16011:78;;;;-1:-1:-1;;;16011:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16124:23:0;;16102:19;16124:23;;;:14;:23;;;;;;;;16162:17;16158:58;;16203:1;16196:8;;;;;16158:58;-1:-1:-1;;;;;16276:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;16297:16:0;;16276:38;;;;;;;;;:48;;:63;-1:-1:-1;16272:147:0;;-1:-1:-1;;;;;16363:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;16384:16:0;;;;16363:38;;;;;;;;16399:1;16363:44;;;-1:-1:-1;16356:51:0;;16272:147;-1:-1:-1;;;;;16480:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;16476:88:0;;;16551:1;16544:8;;;;;16476:88;16576:12;-1:-1:-1;;16618:16:0;;16645:428;16660:5;16652:13;;:5;:13;;;16645:428;;;16724:1;16707:13;;;16706:19;;;16698:27;;16767:20;;:::i;:::-;-1:-1:-1;;;;;;16790:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;16767:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16837:27;;16833:229;;;16892:8;;;;-1:-1:-1;16885:15:0;;-1:-1:-1;;;;16885:15:0;16833:229;16926:12;;:26;;;-1:-1:-1;16922:140:0;;;16981:6;16973:14;;16922:140;;;17045:1;17036:6;:10;17028:18;;16922:140;16645:428;;;;;-1:-1:-1;;;;;;17090:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;15878:1253:0;;;;:::o;39079:1053::-;29513:7;;39204;;-1:-1:-1;;;;;29513:7:0;29499:10;:21;29491:30;;;;;;39245:15;39241:123;;39290:18;;39276:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39345:11:0;;39338:18;;39241:123;39424:18;;39458:8;39453:490;;39549:54;8788:8;39549:44;39572:20;8788:8;39581:10;39572:20;:8;:20;:::i;:::-;39549:18;;;:44;:22;:44;:::i;:::-;:48;:54;:48;:54;:::i;:::-;39528:18;:75;39453:490;;;39677:24;39704:54;8788:8;39704:44;39727:20;8788:8;39736:10;39727:20;:8;:20;:::i;39704:54::-;39677:81;;39790:19;:17;:19::i;:::-;39771:16;:38;39767:169;;;39822:18;:37;;;39767:169;;;39907:19;:17;:19::i;:::-;39886:18;:40;39767:169;39453:490;;40004:26;40019:10;;40004:14;:26::i;:::-;39990:11;:40;40082:18;;40044:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;40115:11:0;;39079:1053;;;;;:::o;8098:20::-;;;;;;;;;;;;;;;-1:-1:-1;;8098:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9057:25;;;;:::o;37276:480::-;37440:10;37387:4;37422:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37422:38:0;;;;;;;;;;37471:27;;;37467:185;;37527:10;37550:1;37509:29;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37509:38:0;;;;;;;;;:42;37467:185;;;37615:29;:8;37628:15;37615:29;:12;:29;:::i;:::-;37592:10;37574:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37574:38:0;;;;;;;;;:70;37467:185;37672:10;37693:29;;;;:17;:29;;;;;;;;-1:-1:-1;;;;;37663:69:0;;37693:38;;;;;;;;;;;37663:69;;;;;;;;;37672:10;37663:69;;;;;;;;;;;37746:4;37739:11;;;29586:10;29600:9;29586:23;:48;;;;-1:-1:-1;29613:7:0;;-1:-1:-1;;;;;29613:7:0;:21;29582:102;;29654:7;;;29645:31;;;-1:-1:-1;;;29645:31:0;;;;-1:-1:-1;;;;;29654:7:0;;;;29645:29;;:31;;;;29654:7;;29645:31;;;;;;29654:7;;29645:31;;;5:2:-1;;;;30:1;27;20:12;32898:776:0;33007:4;32973:2;-1:-1:-1;;;;;29881:18:0;;29873:27;;;;;;-1:-1:-1;;;;;29915:19:0;;29929:4;29915:19;;29907:28;;;;;;33284:17;33304:21;33319:5;33304:14;:21::i;:::-;33411:10;33397:25;;;;:13;:25;;;;;;33284:41;;-1:-1:-1;33397:40:0;;33284:41;33397:40;:29;:40;:::i;:::-;33383:10;33369:25;;;;:13;:25;;;;;;:68;;;;-1:-1:-1;;;;;33501:17:0;;;;;;:32;;33523:9;33501:32;:21;:32;:::i;:::-;-1:-1:-1;;;;;33481:17:0;;;;;;:13;:17;;;;;;;;;:52;;;;33545:31;;;;;;;33481:17;;33554:10;;-1:-1:-1;;;;;;;;;;;33545:31:0;;;;;;;;;33611:10;33600:22;;;;:10;:22;;;;;;;-1:-1:-1;;;;;33624:14:0;;;;;;;;;;33585:65;;33600:22;;;33624:14;33640:9;33585:14;:65::i;:::-;33664:4;33657:11;;;29586:10;29600:9;29586:23;:48;;;;-1:-1:-1;29613:7:0;;-1:-1:-1;;;;;29613:7:0;:21;;29586:48;29582:102;;;29654:7;;;29645:31;;;-1:-1:-1;;;29645:31:0;;;;-1:-1:-1;;;;;29654:7:0;;;;29645:29;;:31;;;;29654:7;;29645:31;;;;;;29654:7;;29645:31;;;5:2:-1;;;;30:1;27;20:12;5:2;29645:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29645:31:0;;;;29582:102;32898:776;;;;;:::o;15192:255::-;-1:-1:-1;;;;;15331:23:0;;15284:7;15331:23;;;:14;:23;;;;;;;;15372:16;:67;;15438:1;15372:67;;;-1:-1:-1;;;;;15391:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;15412:16:0;;15391:38;;;;;;;;15427:1;15391:44;;15365:74;15192:255;-1:-1:-1;;;15192:255:0:o;40294:152::-;40421:18;;40363:7;;40389:51;;:27;:5;8688:8;40389:27;:9;:27;:::i;8879:33::-;;;;:::o;40472:229::-;29418:3;;40592:4;;29418:3;;;-1:-1:-1;;;;;29418:3:0;29404:10;:17;29396:45;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;;;;40628:49;40658:5;40666:2;40670:6;40628:22;:49::i;:::-;-1:-1:-1;40691:4:0;40472:229;;;;;:::o;35351:150::-;-1:-1:-1;;;;;35461:25:0;;;35435:7;35461:25;;;:17;:25;;;;;;;;:34;;;;;;;;;;;;;35351:150::o;8757:39::-;8788:8;8757:39;:::o;2072:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40138:150::-;40206:7;40232:50;8688:8;40232:28;40241:18;;40232:4;:8;;:28;;;;:::i;37922:175::-;29418:3;;;;;-1:-1:-1;;;;;29418:3:0;29404:10;:17;29396:45;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;-1:-1:-1;;;29396:45:0;;;;;;;;;;;;;;;38015:7;;;-1:-1:-1;;;;;38029:18:0;;;-1:-1:-1;;;;;;38029:18:0;;;;;;;38059:32;;;38015:7;;;;38059:32;;;;;;;;;;;;;;;;;;;;;;;29448:1;37922:175;:::o;30397:306::-;30458:7;30687:10;;-1:-1:-1;;30672:25:0;;;;;;30665:32;;30397:306;:::o;3637:136::-;3695:7;3722:43;3726:1;3729;3722:43;;;;;;;;;;;;;;;;;:3;:43::i;3181:181::-;3239:7;3271:5;;;3295:6;;;;3287:46;;;;;-1:-1:-1;;;3287:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;17588:947;17694:6;-1:-1:-1;;;;;17684:16:0;:6;-1:-1:-1;;;;;17684:16:0;;;:30;;;;;17713:1;17704:6;:10;17684:30;17680:848;;;-1:-1:-1;;;;;17735:20:0;;;17731:385;;-1:-1:-1;;;;;17843:22:0;;17824:16;17843:22;;;:14;:22;;;;;;;;;17904:13;:60;;17963:1;17904:60;;;-1:-1:-1;;;;;17920:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;17940:13:0;;17920:34;;;;;;;;17952:1;17920:40;;17904:60;17884:80;-1:-1:-1;17983:17:0;18003:21;17884:80;18017:6;18003:21;:13;:21;:::i;:::-;17983:41;;18043:57;18060:6;18068:9;18079;18090;18043:16;:57::i;:::-;17731:385;;;;-1:-1:-1;;;;;18136:20:0;;;18132:385;;-1:-1:-1;;;;;18244:22:0;;18225:16;18244:22;;;:14;:22;;;;;;;;;18305:13;:60;;18364:1;18305:60;;;-1:-1:-1;;;;;18321:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;18341:13:0;;18321:34;;;;;;;;18353:1;18321:40;;18305:60;18285:80;-1:-1:-1;18384:17:0;18404:21;18285:80;18418:6;18404:21;:13;:21;:::i;:::-;18384:41;;18444:57;18461:6;18469:9;18480;18491;18444:16;:57::i;:::-;18132:385;;;;17588:947;;;:::o;30994:695::-;31102:11;;:23;;31118:6;31102:23;:15;:23;:::i;:::-;31088:11;:37;31163:17;31183:22;31198:6;31183:14;:22::i;:::-;31255:10;;31163:42;;-1:-1:-1;31255:25:0;;31163:42;31255:25;:14;:25;:::i;:::-;31242:10;:38;31382:19;:17;:19::i;:::-;31360:18;;:41;;31352:80;;;;;-1:-1:-1;;;31352:80:0;;;;;;;;;;;;-1:-1:-1;;;31352:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31481:17:0;;;;;;:13;:17;;;;;;:32;;31503:9;31481:32;:21;:32;:::i;:::-;-1:-1:-1;;;;;31461:17:0;;;;;;;:13;:17;;;;;;;;:52;;;;31585:10;:14;;;;;;31558:53;;31461:17;31585:14;31601:9;31558:14;:53::i;:::-;31623:16;;;-1:-1:-1;;;;;31623:16:0;;;;;;;;;;;;;;;;;;;;;;;31651:32;;;;;;;;-1:-1:-1;;;;;31651:32:0;;;31668:1;;-1:-1:-1;;;;;;;;;;;31651:32:0;;;;;;;;30994:695;;;:::o;31918:738::-;32028:11;;:23;;32044:6;32028:23;:15;:23;:::i;:::-;32014:11;:37;32089:17;32109:22;32124:6;32109:14;:22::i;:::-;32181:10;;32089:42;;-1:-1:-1;32181:25:0;;32089:42;32181:25;:14;:25;:::i;:::-;32168:10;:38;32308:19;:17;:19::i;:::-;32286:18;;:41;;32278:80;;;;;-1:-1:-1;;;32278:80:0;;;;;;;;;;;;-1:-1:-1;;;32278:80:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32435:19:0;;;;;;:13;:19;;;;;;:34;;32459:9;32435:34;:23;:34;:::i;:::-;-1:-1:-1;;;;;32413:19:0;;;;;;;:13;:19;;;;;;;;:56;;;;32534:10;:16;;;;;;32519:55;;32534:16;;;32564:9;32519:14;:55::i;:::-;32586:18;;;-1:-1:-1;;;;;32586:18:0;;;;;;;;;;;;;;;;;;;;;;;32616:34;;;;;;;;32639:1;;-1:-1:-1;;;;;32616:34:0;;;-1:-1:-1;;;;;;;;;;;32616:34:0;;;;;;;;31918:738;;;:::o;17139:441::-;-1:-1:-1;;;;;17256:21:0;;;17230:23;17256:21;;;:10;:21;;;;;;;;;;17315:13;:24;;;;;;17394:21;;;;:33;;;-1:-1:-1;;;;;;17394:33:0;;;;;;;17445:54;;17256:21;;;;;17315:24;;17394:33;;17256:21;;;17445:54;;17230:23;17445:54;17512:60;17527:15;17544:9;17555:16;17512:14;:60::i;:::-;17139:441;;;;:::o;4553:471::-;4611:7;4856:6;4852:47;;-1:-1:-1;4886:1:0;4879:8;;4852:47;4923:5;;;4927:1;4923;:5;:1;4947:5;;;;;:10;4939:56;;;;-1:-1:-1;;;4939:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5492:132;5550:7;5577:39;5581:1;5584;5577:39;;;;;;;;;;;;;;;;;:3;:39::i;26037:176::-;26146:58;;;-1:-1:-1;;;;;26146:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26146:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;26120:85:0;;26139:5;;26120:18;:85::i;4110:192::-;4196:7;4232:12;4224:6;;;;4216:29;;;;-1:-1:-1;;;4216:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;4216:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;4268:5:0;;;4110:192::o;18543:704::-;18722:18;18743:76;18750:12;18743:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;18722:97;;18851:1;18836:12;:16;;;:85;;;;-1:-1:-1;;;;;;18856:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;18879:16:0;;18856:40;;;;;;;;;:50;:65;;;:50;;:65;18836:85;18832:339;;;-1:-1:-1;;;;;18938:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;18961:16:0;;18938:40;;;;;;;;18976:1;18938:46;:57;;;18832:339;;;19067:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19028:22:0;;-1:-1:-1;19028:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;19028:72:0;;;;;;;;;;;;;19115:25;;;:14;:25;;;;;;:44;;19143:16;;;19115:44;;;;;;;;;;18832:339;19188:51;;;;;;;;;;;;;;-1:-1:-1;;;;;19188:51:0;;;;;;;;;;;18543:704;;;;;:::o;6154:345::-;6240:7;6342:12;6335:5;6327:28;;;;-1:-1:-1;;;6327:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;6327:28:0;;6366:9;6382:1;6378;:5;;;;;;;6154:345;-1:-1:-1;;;;;6154:345:0:o;28076:1114::-;28680:27;28688:5;-1:-1:-1;;;;;28680:25:0;;:27::i;:::-;28672:71;;;;;-1:-1:-1;;;28672:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;28817:12;28831:23;28866:5;-1:-1:-1;;;;;28858:19:0;28878:4;28858:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;28858:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;28816:67:0;;;;28902:7;28894:52;;;;;-1:-1:-1;;;28894:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28963:17;;:21;28959:224;;29105:10;29094:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29094:30:0;29086:85;;;;-1:-1:-1;;;29086:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19255:161;19330:6;19368:12;-1:-1:-1;;;19357:9:0;;19349:32;;;;-1:-1:-1;;;19349:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;19349:32:0;-1:-1:-1;19406:1:0;;19255:161;-1:-1:-1;;19255:161:0:o;23066:619::-;23126:4;23594:20;;23437:66;23634:23;;;;;;:42;;-1:-1:-1;23661:15:0;;;23634:42;23626:51;23066:619;-1:-1:-1;;;;23066:619:0:o;40708:708::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40708:708:0;;;-1:-1:-1;40708:708:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;-1:-1:-1;40708:708:0;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://d9bd5bbf6a7224c0dd8694a5e4b54b91925e64709621c62bc7363888edb7e445
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.