Overview
Max Total Supply
763,050 Subs
Holders
119 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 0 Decimals)
Balance
12 SubsValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Subscriptions
Compiler Version
v0.5.0+commit.1d4f565a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-11-23 */ pragma solidity 0.5.0; contract PauserRole { using Roles for Roles.Role; event PauserAdded(address indexed account); event PauserRemoved(address indexed account); Roles.Role private _pausers; constructor () internal { _addPauser(msg.sender); } modifier onlyPauser() { require(isPauser(msg.sender), "PauserRole: caller does not have the Pauser role"); _; } function isPauser(address account) public view returns (bool) { return _pausers.has(account); } function addPauser(address account) public onlyPauser { _addPauser(account); } function renouncePauser() public { _removePauser(msg.sender); } function _addPauser(address account) internal { _pausers.add(account); emit PauserAdded(account); } function _removePauser(address account) internal { _pausers.remove(account); emit PauserRemoved(account); } } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @title Finance interface. * @dev Copied from https://github.com/aragon/aragon-apps/blob/master/apps/finance/contracts/Finance.sol#L198 . */ contract Finance { /** * @notice Deposit Some token in the DAO * @dev Deposit for approved ERC20 tokens or ETH * @param _token Address of deposited token * @param _amount Amount of tokens sent * @param _reference Reason for payment */ function deposit(address _token, uint256 _amount, string calldata _reference) external payable; } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract MinterRole { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; constructor () internal { _addMinter(msg.sender); } modifier onlyMinter() { require(isMinter(msg.sender), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(msg.sender); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } } /** * @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. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an `Approval` event is emitted on calls to `transferFrom`. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard `decreaseAllowance` and `increaseAllowance` * functions have been added to mitigate the well-known issues around setting * allowances. See `IERC20.approve`. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See `IERC20.transfer`. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See `IERC20.transferFrom`. * * Emits an `Approval` event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of `ERC20`; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to `transfer`, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a `Transfer` event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a `Transfer` event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destoys `amount` tokens from `account`, reducing the * total supply. * * Emits a `Transfer` event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an `Approval` event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See `_burn` and `_approve`. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ contract Pausable is PauserRole { /** * @dev Emitted when the pause is triggered by a pauser (`account`). */ event Paused(address account); /** * @dev Emitted when the pause is lifted by a pauser (`account`). */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. Assigns the Pauser role * to the deployer. */ constructor () internal { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!_paused, "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(_paused, "Pausable: not paused"); _; } /** * @dev Called by a pauser to pause, triggers stopped state. */ function pause() public onlyPauser whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Called by a pauser to unpause, returns to normal state. */ function unpause() public onlyPauser whenPaused { _paused = false; emit Unpaused(msg.sender); } } /** * @title Pausable token * @dev ERC20 modified with pausable transfers. */ contract ERC20Pausable is ERC20, Pausable { function transfer(address to, uint256 value) public whenNotPaused returns (bool) { return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) { return super.transferFrom(from, to, value); } function approve(address spender, uint256 value) public whenNotPaused returns (bool) { return super.approve(spender, value); } function increaseAllowance(address spender, uint addedValue) public whenNotPaused returns (bool) { return super.increaseAllowance(spender, addedValue); } function decreaseAllowance(address spender, uint subtractedValue) public whenNotPaused returns (bool) { return super.decreaseAllowance(spender, subtractedValue); } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * > Note: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } contract FinanceManager is Ownable { using Address for address; using SafeMath for uint256; Finance public finance; string private constant APPROVE_ERROR = "Approve error."; string private constant RECLAIM_MESSAGE = "Reclaiming tokens sent by mistake."; string private constant IS_NOT_CONTRACT = "Address doesn't belong to a smart contract."; string private constant ZERO_BALANCE = "There are no tokens of this type to be reclaimed."; event ReclaimedTokens(address tokenAddr, uint256 amount); event FinanceSet(address financeAddr); /** * @notice Set the DAO finance app address where deposited or reclaimed tokens will go. * @param _finance The DAO's finance app with a deposit() function. */ function setFinance(Finance _finance) external onlyOwner { require(address(_finance).isContract(), IS_NOT_CONTRACT); finance = _finance; emit FinanceSet(address(_finance)); } /** * @notice Reclaim tokens of the specified type sent to the smart contract. * @dev Reclaim the specified type of ERC20 tokens sent to the smart contract. * Tokens will be deposited into the finance app set with setFinance(). * @param token The token contract. */ function reclaimTokens(ERC20 token) external onlyOwner { require(address(token).isContract(), IS_NOT_CONTRACT); uint256 balance = token.balanceOf(address(this)); require(0 < balance, ZERO_BALANCE); deposit(token, balance, RECLAIM_MESSAGE); emit ReclaimedTokens(address(token), balance); } /** * @dev Deposit the specified type of ERC20 tokens using the finance app set * with setFinance(). * @param token The token contract. * @param amount Number of tokens to deposit. * @param _reference Reason for the deposit. */ function deposit(ERC20 token, uint256 amount, string memory _reference) internal { require(token.approve(address(finance), amount), APPROVE_ERROR); finance.deposit(address(token), amount, _reference); } } /** * @title Subscriptions contract */ contract Subscriptions is ERC20Pausable, MinterRole, FinanceManager { string public constant name = "Subscriptions"; string public constant symbol = "Subs"; uint8 public constant decimals = 0; string private constant ALL_SPONSORSHIPS_CLAIMED = "All Sponsorships claimed"; string private constant INVALID_AMOUNT = "Amount must be greater than zero"; struct Account { uint256 received; // Array to keep track of timestamps for the batches. uint256[] timestamps; // Batches mapped from timestamps to amounts. mapping (uint256 => uint256) batches; } mapping(address => Account) private accounts; event SubscriptionsActivated(address account, uint256 amount); /** * @notice Mint Subscriptions. * @dev Mint Subscriptions. * @param account The receiver's account address. * @param amount The number of Subscriptions. */ function mint(address account, uint256 amount) public onlyMinter whenNotPaused onlyPositive(amount) returns (bool) { _mint(account, amount); return true; } /** * @notice Activate Subscriptions. * @dev Activate Subscriptions. * @param amount The number of Subscriptions. */ function activate(uint256 amount) public whenNotPaused onlyPositive(amount) returns (bool) { uint256 timestamp = now; accounts[msg.sender].timestamps.push(timestamp); accounts[msg.sender].batches[timestamp] = amount; _burn(msg.sender, amount); emit SubscriptionsActivated(msg.sender, amount); return true; } /** * @notice Tells the minter how many Sponsorships the account holder can claim. * @dev Tells the minter how many Sponsorships the account holder can claim so it can * then mint them. Also increments the account's "received" counter to indicate the * number of Sponsorships that have been claimed. * @param account The claimer's account address. * @return The number of Sponsorships the account holder can claim. */ function claim(address account) external onlyMinter whenNotPaused returns (uint256 amount) { uint256 claimableAmount = claimable(account); require(0 < claimableAmount, ALL_SPONSORSHIPS_CLAIMED); accounts[account].received = accounts[account].received.add(claimableAmount); return claimableAmount; } /** * @notice Computes the number of Sponsorships the account holder can claim. * @dev Computes the number of Sponsorships the account holder can claim. * @param account The claimer's account address. * @return The number of Sponsorships the account holder can claim. */ function claimable(address account) public view returns (uint256 amount) { // The number of Sponsorships produced by all of this account's batches. uint256 allProduced; // Loop through all the batches. for (uint i = 0; i < accounts[account].timestamps.length; i++) { uint256 timestamp = accounts[account].timestamps[i]; // The number of Subscriptions purchased in the batch that matches the timestamp. uint256 subsInBatch = accounts[account].batches[timestamp]; // "months" is the number of whole 30-day periods since the batch was purchased (plus one). // We add one because we want each Subscription to start with one claimable sponsorship immediately. uint256 months = ((now - timestamp) / (30*24*3600)) + 1; // Subscriptions end after 71 30-day periods (a little less than 6 years). if (72 < months) { months = 72; } uint256 _years = months / 12; // One Subscription produces 252 Sponsorships in total. uint256 producedPerSub = 6 * _years * (_years + 1) + (months % 12) * (_years + 1); allProduced += (producedPerSub * subsInBatch); } uint256 claimableAmount = allProduced - accounts[account].received; return claimableAmount; } /** * @dev Throws if the number is not bigger than zero * @param number The number to validate */ modifier onlyPositive(uint number) { require(0 < number, INVALID_AMOUNT); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"claim","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"finance","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"claimable","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isPauser","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"}],"name":"reclaimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_finance","type":"address"}],"name":"setFinance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"activate","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"SubscriptionsActivated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenAddr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"ReclaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"financeAddr","type":"address"}],"name":"FinanceSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040526200001e3362000117640100000000026401000000009004565b6000600460006101000a81548160ff021916908315150217905550620000533362000181640100000000026401000000009004565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3620003fe565b6200013b816003620001eb6401000000000262003c7f179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b620001a5816005620001eb6401000000000262003c7f179091906401000000009004565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620002068282620002da640100000000026401000000009004565b1515156200027c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515620003a7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b613d88806200040e6000396000f3fe60806040526004361061018b576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610190578063095ea7b31461022057806318160ddd146102935780631e83409a146102be57806323b872dd14610323578063313b7b19146103b6578063313ce5671461040d578063395093511461043e5780633f4ba83a146104b1578063402914f5146104c857806340c10f191461052d57806346fbf68e146105a05780634875ea55146106095780635c975abb1461065a5780636ef8d66d1461068957806370a08231146106a0578063715018a61461070557806382dc1ec41461071c5780638456cb591461076d5780638da5cb5b146107845780638f32d59b146107db57806395d89b411461080a578063983b2d561461089a57806398650275146108eb5780639b8d306414610902578063a457c2d714610953578063a9059cbb146109c6578063aa271e1a14610a39578063b260c42a14610aa2578063dd62ed3e14610af5578063f2fde38b14610b7a575b600080fd5b34801561019c57600080fd5b506101a5610bcb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e55780820151818401526020810190506101ca565b50505050905090810190601f1680156102125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022c57600080fd5b506102796004803603604081101561024357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c04565b604051808215151515815260200191505060405180910390f35b34801561029f57600080fd5b506102a8610c9d565b6040518082815260200191505060405180910390f35b3480156102ca57600080fd5b5061030d600480360360208110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca7565b6040518082815260200191505060405180910390f35b34801561032f57600080fd5b5061039c6004803603606081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f65565b604051808215151515815260200191505060405180910390f35b3480156103c257600080fd5b506103cb611000565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041957600080fd5b50610422611026565b604051808260ff1660ff16815260200191505060405180910390f35b34801561044a57600080fd5b506104976004803603604081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061102b565b604051808215151515815260200191505060405180910390f35b3480156104bd57600080fd5b506104c66110c4565b005b3480156104d457600080fd5b50610517600480360360208110156104eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126b565b6040518082815260200191505060405180910390f35b34801561053957600080fd5b506105866004803603604081101561055057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143b565b604051808215151515815260200191505060405180910390f35b3480156105ac57600080fd5b506105ef600480360360208110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165e565b604051808215151515815260200191505060405180910390f35b34801561061557600080fd5b506106586004803603602081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167b565b005b34801561066657600080fd5b5061066f611ad4565b604051808215151515815260200191505060405180910390f35b34801561069557600080fd5b5061069e611aeb565b005b3480156106ac57600080fd5b506106ef600480360360208110156106c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af6565b6040518082815260200191505060405180910390f35b34801561071157600080fd5b5061071a611b3e565b005b34801561072857600080fd5b5061076b6004803603602081101561073f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7b565b005b34801561077957600080fd5b50610782611d2a565b005b34801561079057600080fd5b50610799611ed2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107e757600080fd5b506107f0611efc565b604051808215151515815260200191505060405180910390f35b34801561081657600080fd5b5061081f611f54565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561085f578082015181840152602081019050610844565b50505050905090810190601f16801561088c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108a657600080fd5b506108e9600480360360208110156108bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8d565b005b3480156108f757600080fd5b5061090061203c565b005b34801561090e57600080fd5b506109516004803603602081101561092557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612047565b005b34801561095f57600080fd5b506109ac6004803603604081101561097657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228f565b604051808215151515815260200191505060405180910390f35b3480156109d257600080fd5b50610a1f600480360360408110156109e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612328565b604051808215151515815260200191505060405180910390f35b348015610a4557600080fd5b50610a8860048036036020811015610a5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123c1565b604051808215151515815260200191505060405180910390f35b348015610aae57600080fd5b50610adb60048036036020811015610ac557600080fd5b81019080803590602001909291905050506123de565b604051808215151515815260200191505060405180910390f35b348015610b0157600080fd5b50610b6460048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612692565b6040518082815260200191505060405180910390f35b348015610b8657600080fd5b50610bc960048036036020811015610b9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612719565b005b6040805190810160405280600d81526020017f537562736372697074696f6e730000000000000000000000000000000000000081525081565b6000600460009054906101000a900460ff16151515610c8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c9583836127a1565b905092915050565b6000600254905090565b6000610cb2336123c1565b1515610d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515610dd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000610ddc8361126b565b9050806000106040805190810160405280601881526020017f416c6c2053706f6e736f72736869707320636c61696d65640000000000000000815250901515610ec0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e85578082015181840152602081019050610e6a565b50505050905090810190601f168015610eb25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50610f1681600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546127b890919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080915050919050565b6000600460009054906101000a900460ff16151515610fec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ff7848484612842565b90509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081565b6000600460009054906101000a900460ff161515156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6110bc83836128f3565b905092915050565b6110cd3361165e565b1515611167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff1615156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060008090505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805490508110156113e7576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110151561131257fe5b906000526020600020015490506000600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205490506000600162278d0084420381151561138b57fe5b04019050806048101561139d57604890505b6000600c828115156113ab57fe5b049050600060018201600c848115156113c057fe5b06026001830183600602020190508381028701965050505050508080600101915050611274565b506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154820390508092505050919050565b6000611446336123c1565b15156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515611565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b81806000106040805190810160405280602081526020017f416d6f756e74206d7573742062652067726561746572207468616e207a65726f815250901515611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561160d5780820151818401526020810190506115f2565b50505050905090810190601f16801561163a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506116538484612998565b600191505092915050565b6000611674826003612b5590919063ffffffff16565b9050919050565b611683611efc565b15156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117168173ffffffffffffffffffffffffffffffffffffffff16612c78565b606060405190810160405280602b81526020017f4164647265737320646f65736e27742062656c6f6e6720746f206120736d617281526020017f7420636f6e74726163742e00000000000000000000000000000000000000000081525090151561181b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117e05780820151818401526020810190506117c5565b50505050905090810190601f16801561180d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d60208110156118e157600080fd5b8101908080519060200190929190505050905080600010606060405190810160405280603181526020017f546865726520617265206e6f20746f6b656e73206f662074686973207479706581526020017f20746f206265207265636c61696d65642e0000000000000000000000000000008152509015156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119c25780820151818401526020810190506119a7565b50505050905090810190601f1680156119ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611a658282606060405190810160405280602281526020017f5265636c61696d696e6720746f6b656e732073656e74206279206d697374616b81526020017f652e000000000000000000000000000000000000000000000000000000000000815250612c8b565b7fb80feefd2c0e05c11d90a2f0c930536d4f7db3281c6266f3d4010aa50630d99e8282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6000600460009054906101000a900460ff16905090565b611af433612fb9565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b46611efc565b1515611bba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c843361165e565b1515611d1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611d2781613013565b50565b611d333361165e565b1515611dcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515611e52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6040805190810160405280600481526020017f537562730000000000000000000000000000000000000000000000000000000081525081565b611f96336123c1565b1515612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b6120398161306d565b50565b612045336130c7565b565b61204f611efc565b15156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120e28173ffffffffffffffffffffffffffffffffffffffff16612c78565b606060405190810160405280602b81526020017f4164647265737320646f65736e27742062656c6f6e6720746f206120736d617281526020017f7420636f6e74726163742e0000000000000000000000000000000000000000008152509015156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121ac578082015181840152602081019050612191565b50505050905090810190601f1680156121d95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9001792db063d482fc9cf4ba24ded921f44e028e04da66cdd14076b31cd64d3481604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600460009054906101000a900460ff16151515612316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123208383613121565b905092915050565b6000600460009054906101000a900460ff161515156123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123b983836131c6565b905092915050565b60006123d7826005612b5590919063ffffffff16565b9050919050565b6000600460009054906101000a900460ff16151515612465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b81806000106040805190810160405280602081526020017f416d6f756e74206d7573742062652067726561746572207468616e207a65726f815250901515612548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561250d5780820151818401526020810190506124f2565b50505050905090810190601f16801561253a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000429050600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181908060018154018082558091505090600182039060005260206000200160009091929091909150555083600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000208190555061261c33856131dd565b7f4c7e146d9eb0292067111d2a6d939a540170991769a2c3e3f8c0f85f6eb1dbc23385604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600192505050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612721611efc565b1515612795576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61279e816133c0565b50565b60006127ae33848461354b565b6001905092915050565b6000808284019050838110151515612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061284f8484846137cc565b6128e884336128e385600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b61354b565b600190509392505050565b600061298e338461298985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b61354b565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612a52816002546127b890919063ffffffff16565b600281905550612aa9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612c21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080823b905060008111915050919050565b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d5057600080fd5b505af1158015612d64573d6000803e3d6000fd5b505050506040513d6020811015612d7a57600080fd5b81019080805190602001909291905050506040805190810160405280600e81526020017f417070726f7665206572726f722e000000000000000000000000000000000000815250901515612e69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e2e578082015181840152602081019050612e13565b50505050905090810190601f168015612e5b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bfe07da68484846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612f4e578082015181840152602081019050612f33565b50505050905090810190601f168015612f7b5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015612f9c57600080fd5b505af1158015612fb0573d6000803e3d6000fd5b50505050505050565b612fcd816003613b7d90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b613027816003613c7f90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b613081816005613c7f90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6130db816005613b7d90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006131bc33846131b785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b61354b565b6001905092915050565b60006131d33384846137cc565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156132a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6132bd81600254613af290919063ffffffff16565b600281905550613314816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561348b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001807f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526020017f646472657373000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613616576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515613962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6139b3816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a46816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211151515613b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b613b878282612b55565b1515613c21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613c898282612b55565b151515613cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a72305820cc55ff801412cd553a0b6c906a86936f4bdcad3094630bff80344accda9dd7010029
Deployed Bytecode
0x60806040526004361061018b576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610190578063095ea7b31461022057806318160ddd146102935780631e83409a146102be57806323b872dd14610323578063313b7b19146103b6578063313ce5671461040d578063395093511461043e5780633f4ba83a146104b1578063402914f5146104c857806340c10f191461052d57806346fbf68e146105a05780634875ea55146106095780635c975abb1461065a5780636ef8d66d1461068957806370a08231146106a0578063715018a61461070557806382dc1ec41461071c5780638456cb591461076d5780638da5cb5b146107845780638f32d59b146107db57806395d89b411461080a578063983b2d561461089a57806398650275146108eb5780639b8d306414610902578063a457c2d714610953578063a9059cbb146109c6578063aa271e1a14610a39578063b260c42a14610aa2578063dd62ed3e14610af5578063f2fde38b14610b7a575b600080fd5b34801561019c57600080fd5b506101a5610bcb565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156101e55780820151818401526020810190506101ca565b50505050905090810190601f1680156102125780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561022c57600080fd5b506102796004803603604081101561024357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610c04565b604051808215151515815260200191505060405180910390f35b34801561029f57600080fd5b506102a8610c9d565b6040518082815260200191505060405180910390f35b3480156102ca57600080fd5b5061030d600480360360208110156102e157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610ca7565b6040518082815260200191505060405180910390f35b34801561032f57600080fd5b5061039c6004803603606081101561034657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f65565b604051808215151515815260200191505060405180910390f35b3480156103c257600080fd5b506103cb611000565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561041957600080fd5b50610422611026565b604051808260ff1660ff16815260200191505060405180910390f35b34801561044a57600080fd5b506104976004803603604081101561046157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061102b565b604051808215151515815260200191505060405180910390f35b3480156104bd57600080fd5b506104c66110c4565b005b3480156104d457600080fd5b50610517600480360360208110156104eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061126b565b6040518082815260200191505060405180910390f35b34801561053957600080fd5b506105866004803603604081101561055057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061143b565b604051808215151515815260200191505060405180910390f35b3480156105ac57600080fd5b506105ef600480360360208110156105c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165e565b604051808215151515815260200191505060405180910390f35b34801561061557600080fd5b506106586004803603602081101561062c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061167b565b005b34801561066657600080fd5b5061066f611ad4565b604051808215151515815260200191505060405180910390f35b34801561069557600080fd5b5061069e611aeb565b005b3480156106ac57600080fd5b506106ef600480360360208110156106c357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611af6565b6040518082815260200191505060405180910390f35b34801561071157600080fd5b5061071a611b3e565b005b34801561072857600080fd5b5061076b6004803603602081101561073f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c7b565b005b34801561077957600080fd5b50610782611d2a565b005b34801561079057600080fd5b50610799611ed2565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156107e757600080fd5b506107f0611efc565b604051808215151515815260200191505060405180910390f35b34801561081657600080fd5b5061081f611f54565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561085f578082015181840152602081019050610844565b50505050905090810190601f16801561088c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156108a657600080fd5b506108e9600480360360208110156108bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611f8d565b005b3480156108f757600080fd5b5061090061203c565b005b34801561090e57600080fd5b506109516004803603602081101561092557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612047565b005b34801561095f57600080fd5b506109ac6004803603604081101561097657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061228f565b604051808215151515815260200191505060405180910390f35b3480156109d257600080fd5b50610a1f600480360360408110156109e957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612328565b604051808215151515815260200191505060405180910390f35b348015610a4557600080fd5b50610a8860048036036020811015610a5c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506123c1565b604051808215151515815260200191505060405180910390f35b348015610aae57600080fd5b50610adb60048036036020811015610ac557600080fd5b81019080803590602001909291905050506123de565b604051808215151515815260200191505060405180910390f35b348015610b0157600080fd5b50610b6460048036036040811015610b1857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612692565b6040518082815260200191505060405180910390f35b348015610b8657600080fd5b50610bc960048036036020811015610b9d57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612719565b005b6040805190810160405280600d81526020017f537562736372697074696f6e730000000000000000000000000000000000000081525081565b6000600460009054906101000a900460ff16151515610c8b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610c9583836127a1565b905092915050565b6000600254905090565b6000610cb2336123c1565b1515610d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515610dd1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6000610ddc8361126b565b9050806000106040805190810160405280601881526020017f416c6c2053706f6e736f72736869707320636c61696d65640000000000000000815250901515610ec0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e85578082015181840152602081019050610e6a565b50505050905090810190601f168015610eb25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50610f1681600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600001546127b890919063ffffffff16565b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000018190555080915050919050565b6000600460009054906101000a900460ff16151515610fec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b610ff7848484612842565b90509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600081565b6000600460009054906101000a900460ff161515156110b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6110bc83836128f3565b905092915050565b6110cd3361165e565b1515611167576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff1615156111eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa33604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60008060008090505b600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600101805490508110156113e7576000600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001018281548110151561131257fe5b906000526020600020015490506000600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000205490506000600162278d0084420381151561138b57fe5b04019050806048101561139d57604890505b6000600c828115156113ab57fe5b049050600060018201600c848115156113c057fe5b06026001830183600602020190508381028701965050505050508080600101915050611274565b506000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000154820390508092505050919050565b6000611446336123c1565b15156114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515611565576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b81806000106040805190810160405280602081526020017f416d6f756e74206d7573742062652067726561746572207468616e207a65726f815250901515611648576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561160d5780820151818401526020810190506115f2565b50505050905090810190601f16801561163a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506116538484612998565b600191505092915050565b6000611674826003612b5590919063ffffffff16565b9050919050565b611683611efc565b15156116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6117168173ffffffffffffffffffffffffffffffffffffffff16612c78565b606060405190810160405280602b81526020017f4164647265737320646f65736e27742062656c6f6e6720746f206120736d617281526020017f7420636f6e74726163742e00000000000000000000000000000000000000000081525090151561181b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156117e05780820151818401526020810190506117c5565b50505050905090810190601f16801561180d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156118b757600080fd5b505afa1580156118cb573d6000803e3d6000fd5b505050506040513d60208110156118e157600080fd5b8101908080519060200190929190505050905080600010606060405190810160405280603181526020017f546865726520617265206e6f20746f6b656e73206f662074686973207479706581526020017f20746f206265207265636c61696d65642e0000000000000000000000000000008152509015156119fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156119c25780820151818401526020810190506119a7565b50505050905090810190601f1680156119ef5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50611a658282606060405190810160405280602281526020017f5265636c61696d696e6720746f6b656e732073656e74206279206d697374616b81526020017f652e000000000000000000000000000000000000000000000000000000000000815250612c8b565b7fb80feefd2c0e05c11d90a2f0c930536d4f7db3281c6266f3d4010aa50630d99e8282604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a15050565b6000600460009054906101000a900460ff16905090565b611af433612fb9565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b46611efc565b1515611bba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c843361165e565b1515611d1e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b611d2781613013565b50565b611d333361165e565b1515611dcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f506175736572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f207468652050617573657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b600460009054906101000a900460ff16151515611e52576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25833604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614905090565b6040805190810160405280600481526020017f537562730000000000000000000000000000000000000000000000000000000081525081565b611f96336123c1565b1515612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260308152602001807f4d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766581526020017f20746865204d696e74657220726f6c650000000000000000000000000000000081525060400191505060405180910390fd5b6120398161306d565b50565b612045336130c7565b565b61204f611efc565b15156120c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6120e28173ffffffffffffffffffffffffffffffffffffffff16612c78565b606060405190810160405280602b81526020017f4164647265737320646f65736e27742062656c6f6e6720746f206120736d617281526020017f7420636f6e74726163742e0000000000000000000000000000000000000000008152509015156121e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156121ac578082015181840152602081019050612191565b50505050905090810190601f1680156121d95780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f9001792db063d482fc9cf4ba24ded921f44e028e04da66cdd14076b31cd64d3481604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a150565b6000600460009054906101000a900460ff16151515612316576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123208383613121565b905092915050565b6000600460009054906101000a900460ff161515156123af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123b983836131c6565b905092915050565b60006123d7826005612b5590919063ffffffff16565b9050919050565b6000600460009054906101000a900460ff16151515612465576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b81806000106040805190810160405280602081526020017f416d6f756e74206d7573742062652067726561746572207468616e207a65726f815250901515612548576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561250d5780820151818401526020810190506124f2565b50505050905090810190601f16801561253a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000429050600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181908060018154018082558091505090600182039060005260206000200160009091929091909150555083600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060020160008381526020019081526020016000208190555061261c33856131dd565b7f4c7e146d9eb0292067111d2a6d939a540170991769a2c3e3f8c0f85f6eb1dbc23385604051808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019250505060405180910390a1600192505050919050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b612721611efc565b1515612795576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61279e816133c0565b50565b60006127ae33848461354b565b6001905092915050565b6000808284019050838110151515612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600061284f8484846137cc565b6128e884336128e385600160008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b61354b565b600190509392505050565b600061298e338461298985600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b61354b565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b612a52816002546127b890919063ffffffff16565b600281905550612aa9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515612c21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f526f6c65733a206163636f756e7420697320746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080823b905060008111915050919050565b8273ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612d5057600080fd5b505af1158015612d64573d6000803e3d6000fd5b505050506040513d6020811015612d7a57600080fd5b81019080805190602001909291905050506040805190810160405280600e81526020017f417070726f7665206572726f722e000000000000000000000000000000000000815250901515612e69576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612e2e578082015181840152602081019050612e13565b50505050905090810190601f168015612e5b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663bfe07da68484846040518463ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612f4e578082015181840152602081019050612f33565b50505050905090810190601f168015612f7b5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015612f9c57600080fd5b505af1158015612fb0573d6000803e3d6000fd5b50505050505050565b612fcd816003613b7d90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b613027816003613c7f90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b613081816005613c7f90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6130db816005613b7d90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006131bc33846131b785600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b61354b565b6001905092915050565b60006131d33384846137cc565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156132a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6132bd81600254613af290919063ffffffff16565b600281905550613314816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415151561348b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001807f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526020017f646472657373000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613616576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156136e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515613897576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515613962576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6139b3816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054613af290919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613a46816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127b890919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000828211151515613b6c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b600082840390508091505092915050565b613b878282612b55565b1515613c21576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c81526020017f650000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b613c898282612b55565b151515613cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505056fea165627a7a72305820cc55ff801412cd553a0b6c906a86936f4bdcad3094630bff80344accda9dd7010029
Deployed Bytecode Sourcemap
26429:4542:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26504:45;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26504:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26504:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20329:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20329:140:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20329:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11416:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11416:91:0;;;;;;;;;;;;;;;;;;;;;;;28628:382;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28628:382:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;28628:382:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20161:160;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20161:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20161:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24300:22;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24300:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26601:34;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26601:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20477:167;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20477:167:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20477:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19760:118;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19760:118:0;;;;;;29319:1420;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29319:1420:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;29319:1420:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27377:228;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27377:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27377:228:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;445:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;445:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;445:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25497:365;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25497:365:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25497:365:0;;;;;;;;;;;;;;;;;;;;;;18969:78;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18969:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;662:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;662:77:0;;;;;;11570:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11570:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11570:110:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22471:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22471:140:0;;;;;;562:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;562:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;562:92:0;;;;;;;;;;;;;;;;;;;;;;19549:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19549:116:0;;;;;;21660:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21660:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;22026:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22026:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;26556:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26556:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26556:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6695:92;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6695:92:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6695:92:0;;;;;;;;;;;;;;;;;;;;;;6795:77;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6795:77:0;;;;;;24962:231;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24962:231:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;24962:231:0;;;;;;;;;;;;;;;;;;;;;;20652:177;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20652:177:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20652:177:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20021:132;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20021:132:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;20021:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6578:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6578:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;6578:109:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27755:407;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27755:407:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;27755:407:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12112:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12112:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12112:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22766:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22766:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22766:109:0;;;;;;;;;;;;;;;;;;;;;;26504:45;;;;;;;;;;;;;;;;;;;;:::o;20329:140::-;20408:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20432:29;20446:7;20455:5;20432:13;:29::i;:::-;20425:36;;20329:140;;;;:::o;11416:91::-;11460:7;11487:12;;11480:19;;11416:91;:::o;28628:382::-;28739:14;6477:20;6486:10;6477:8;:20::i;:::-;6469:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28771:23;28797:18;28807:7;28797:9;:18::i;:::-;28771:44;;28838:15;28834:1;:19;28855:24;;;;;;;;;;;;;;;;;;28826:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;28826:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28922:47;28953:15;28922:8;:17;28931:7;28922:17;;;;;;;;;;;;;;;:26;;;:30;;:47;;;;:::i;:::-;28893:8;:17;28902:7;28893:17;;;;;;;;;;;;;;;:26;;:76;;;;28987:15;28980:22;;;28628:382;;;:::o;20161:160::-;20254:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20278:35;20297:4;20303:2;20307:5;20278:18;:35::i;:::-;20271:42;;20161:160;;;;;:::o;24300:22::-;;;;;;;;;;;;;:::o;26601:34::-;26634:1;26601:34;:::o;20477:167::-;20568:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20592:44;20616:7;20625:10;20592:23;:44::i;:::-;20585:51;;20477:167;;;;:::o;19760:118::-;344:20;353:10;344:8;:20::i;:::-;336:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19405:7;;;;;;;;;;;19397:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19829:5;19819:7;;:15;;;;;;;;;;;;;;;;;;19850:20;19859:10;19850:20;;;;;;;;;;;;;;;;;;;;;;19760:118::o;29319:1420::-;29403:14;29517:19;29596:6;29605:1;29596:10;;29591:1031;29612:8;:17;29621:7;29612:17;;;;;;;;;;;;;;;:28;;:35;;;;29608:1;:39;29591:1031;;;29669:17;29689:8;:17;29698:7;29689:17;;;;;;;;;;;;;;;:28;;29718:1;29689:31;;;;;;;;;;;;;;;;;;29669:51;;29830:19;29852:8;:17;29861:7;29852:17;;;;;;;;;;;;;;;:25;;:36;29878:9;29852:36;;;;;;;;;;;;29830:58;;30122:14;30176:1;30161:10;30147:9;30141:3;:15;30140:32;;;;;;;;30139:38;30122:55;;30289:6;30284:2;:11;30280:63;;;30325:2;30316:11;;30280:63;30357:14;30383:2;30374:6;:11;;;;;;;;30357:28;;30469:22;30548:1;30539:6;:10;30532:2;30523:6;:11;;;;;;;;30522:28;30517:1;30508:6;:10;30498:6;30494:1;:10;:25;:56;30469:81;;30598:11;30581:14;:28;30565:45;;;;29591:1031;;;;;29649:3;;;;;;;29591:1031;;;;30632:23;30672:8;:17;30681:7;30672:17;;;;;;;;;;;;;;;:26;;;30658:11;:40;30632:66;;30716:15;30709:22;;;;29319:1420;;;:::o;27377:228::-;27531:4;6477:20;6486:10;6477:8;:20::i;:::-;6469:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27505:6;30923;30919:1;:10;30931:14;;;;;;;;;;;;;;;;;;30911:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30911:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27553:22;27559:7;27568:6;27553:5;:22::i;:::-;27593:4;27586:11;;19245:1;27377:228;;;;:::o;445:109::-;501:4;525:21;538:7;525:8;:12;;:21;;;;:::i;:::-;518:28;;445:109;;;:::o;25497:365::-;21872:9;:7;:9::i;:::-;21864:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25594:27;25602:5;25594:25;;;:27::i;:::-;25623:15;;;;;;;;;;;;;;;;;;;;;;;25586:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25586:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25652:15;25670:5;:15;;;25694:4;25670:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25670:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25670:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;25670:30:0;;;;;;;;;;;;;;;;25652:48;;25723:7;25719:1;:11;25732:12;;;;;;;;;;;;;;;;;;;;;;;25711:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25711:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25758:40;25766:5;25773:7;25782:15;;;;;;;;;;;;;;;;;;;;;;;25758:7;:40::i;:::-;25814;25838:5;25846:7;25814:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;21929:1;25497:365;:::o;18969:78::-;19008:4;19032:7;;;;;;;;;;;19025:14;;18969:78;:::o;662:77::-;706:25;720:10;706:13;:25::i;:::-;662:77::o;11570:110::-;11627:7;11654:9;:18;11664:7;11654:18;;;;;;;;;;;;;;;;11647:25;;11570:110;;;:::o;22471:140::-;21872:9;:7;:9::i;:::-;21864:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22570:1;22533:40;;22554:6;;;;;;;;;;;22533:40;;;;;;;;;;;;22601:1;22584:6;;:19;;;;;;;;;;;;;;;;;;22471:140::o;562:92::-;344:20;353:10;344:8;:20::i;:::-;336:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;627:19;638:7;627:10;:19::i;:::-;562:92;:::o;19549:116::-;344:20;353:10;344:8;:20::i;:::-;336:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19619:4;19609:7;;:14;;;;;;;;;;;;;;;;;;19639:18;19646:10;19639:18;;;;;;;;;;;;;;;;;;;;;;19549:116::o;21660:79::-;21698:7;21725:6;;;;;;;;;;;21718:13;;21660:79;:::o;22026:92::-;22066:4;22104:6;;;;;;;;;;;22090:20;;:10;:20;;;22083:27;;22026:92;:::o;26556:38::-;;;;;;;;;;;;;;;;;;;;:::o;6695:92::-;6477:20;6486:10;6477:8;:20::i;:::-;6469:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6760:19;6771:7;6760:10;:19::i;:::-;6695:92;:::o;6795:77::-;6839:25;6853:10;6839:13;:25::i;:::-;6795:77::o;24962:231::-;21872:9;:7;:9::i;:::-;21864:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25061:30;25069:8;25061:28;;;:30::i;:::-;25093:15;;;;;;;;;;;;;;;;;;;;;;;25053:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;25053:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25132:8;25122:7;;:18;;;;;;;;;;;;;;;;;;25156:29;25175:8;25156:29;;;;;;;;;;;;;;;;;;;;;;24962:231;:::o;20652:177::-;20748:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20772:49;20796:7;20805:15;20772:23;:49::i;:::-;20765:56;;20652:177;;;;:::o;20021:132::-;20096:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20120:25;20135:2;20139:5;20120:14;:25::i;:::-;20113:32;;20021:132;;;;:::o;6578:109::-;6634:4;6658:21;6671:7;6658:8;:12;;:21;;;;:::i;:::-;6651:28;;6578:109;;;:::o;27755:407::-;27876:4;19206:7;;;;;;;;;;;19205:8;19197:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27850:6;30923;30919:1;:10;30931:14;;;;;;;;;;;;;;;;;;30911:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30911:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27898:17;27918:3;27898:23;;27932:8;:20;27941:10;27932:20;;;;;;;;;;;;;;;:31;;27969:9;27932:47;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;27932:47:0;;;;;;;;;;;;;;;;;;;;;;28032:6;27990:8;:20;27999:10;27990:20;;;;;;;;;;;;;;;:28;;:39;28019:9;27990:39;;;;;;;;;;;:48;;;;28049:25;28055:10;28067:6;28049:5;:25::i;:::-;28090:42;28113:10;28125:6;28090:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;28150:4;28143:11;;;19245:1;27755:407;;;:::o;12112:134::-;12184:7;12211:11;:18;12223:5;12211:18;;;;;;;;;;;;;;;:27;12230:7;12211:27;;;;;;;;;;;;;;;;12204:34;;12112:134;;;;:::o;22766:109::-;21872:9;:7;:9::i;:::-;21864:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22839:28;22858:8;22839:18;:28::i;:::-;22766:109;:::o;12393:148::-;12458:4;12475:36;12484:10;12496:7;12505:5;12475:8;:36::i;:::-;12529:4;12522:11;;12393:148;;;;:::o;1848:181::-;1906:7;1926:9;1942:1;1938;:5;1926:17;;1967:1;1962;:6;;1954:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:1;2013:8;;;1848:181;;;;:::o;13012:256::-;13101:4;13118:36;13128:6;13136:9;13147:6;13118:9;:36::i;:::-;13165:73;13174:6;13182:10;13194:43;13230:6;13194:11;:19;13206:6;13194:19;;;;;;;;;;;;;;;:31;13214:10;13194:31;;;;;;;;;;;;;;;;:35;;:43;;;;:::i;:::-;13165:8;:73::i;:::-;13256:4;13249:11;;13012:256;;;;;:::o;13677:206::-;13757:4;13774:79;13783:10;13795:7;13804:48;13841:10;13804:11;:23;13816:10;13804:23;;;;;;;;;;;;;;;:32;13828:7;13804:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;13774:8;:79::i;:::-;13871:4;13864:11;;13677:206;;;;:::o;15802:308::-;15897:1;15878:21;;:7;:21;;;;15870:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15963:24;15980:6;15963:12;;:16;;:24;;;;:::i;:::-;15948:12;:39;;;;16019:30;16042:6;16019:9;:18;16029:7;16019:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;15998:9;:18;16008:7;15998:18;;;;;;;;;;;;;;;:51;;;;16086:7;16065:37;;16082:1;16065:37;;;16095:6;16065:37;;;;;;;;;;;;;;;;;;15802:308;;:::o;5951:203::-;6023:4;6067:1;6048:21;;:7;:21;;;;6040:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6126:4;:11;;:20;6138:7;6126:20;;;;;;;;;;;;;;;;;;;;;;;;;6119:27;;5951:203;;;;:::o;23756:422::-;23816:4;24024:12;24135:7;24123:20;24115:28;;24169:1;24162:4;:8;24155:15;;;23756:422;;;:::o;26133:241::-;26247:5;:13;;;26269:7;;;;;;;;;;;26279:6;26247:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26247:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26247:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;26247:39:0;;;;;;;;;;;;;;;;26288:13;;;;;;;;;;;;;;;;;;26239:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26239:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26315:7;;;;;;;;;;;:15;;;26339:5;26347:6;26355:10;26315:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;26315:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26315:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26315:51:0;;;;26133:241;;;:::o;877:130::-;937:24;953:7;937:8;:15;;:24;;;;:::i;:::-;991:7;977:22;;;;;;;;;;;;877:130;:::o;747:122::-;804:21;817:7;804:8;:12;;:21;;;;:::i;:::-;853:7;841:20;;;;;;;;;;;;747:122;:::o;6880:::-;6937:21;6950:7;6937:8;:12;;:21;;;;:::i;:::-;6986:7;6974:20;;;;;;;;;;;;6880:122;:::o;7010:130::-;7070:24;7086:7;7070:8;:15;;:24;;;;:::i;:::-;7124:7;7110:22;;;;;;;;;;;;7010:130;:::o;14386:216::-;14471:4;14488:84;14497:10;14509:7;14518:53;14555:15;14518:11;:23;14530:10;14518:23;;;;;;;;;;;;;;;:32;14542:7;14518:32;;;;;;;;;;;;;;;;:36;;:53;;;;:::i;:::-;14488:8;:84::i;:::-;14590:4;14583:11;;14386:216;;;;:::o;11893:156::-;11962:4;11979:40;11989:10;12001:9;12012:6;11979:9;:40::i;:::-;12037:4;12030:11;;11893:156;;;;:::o;16442:306::-;16536:1;16517:21;;:7;:21;;;;16509:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16604:23;16621:5;16604:12;;:16;;:23;;;;:::i;:::-;16589:12;:38;;;;16659:29;16682:5;16659:9;:18;16669:7;16659:18;;;;;;;;;;;;;;;;:22;;:29;;;;:::i;:::-;16638:9;:18;16648:7;16638:18;;;;;;;;;;;;;;;:50;;;;16730:1;16704:36;;16713:7;16704:36;;;16734:5;16704:36;;;;;;;;;;;;;;;;;;16442:306;;:::o;22981:229::-;23075:1;23055:22;;:8;:22;;;;23047:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23165:8;23136:38;;23157:6;;;;;;;;;;;23136:38;;;;;;;;;;;;23194:8;23185:6;;:17;;;;;;;;;;;;;;;;;;22981:229;:::o;17188:335::-;17298:1;17281:19;;:5;:19;;;;17273:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17379:1;17360:21;;:7;:21;;;;17352:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17463:5;17433:11;:18;17445:5;17433:18;;;;;;;;;;;;;;;:27;17452:7;17433:27;;;;;;;;;;;;;;;:35;;;;17500:7;17484:31;;17493:5;17484:31;;;17509:5;17484:31;;;;;;;;;;;;;;;;;;17188:335;;;:::o;15092:429::-;15208:1;15190:20;;:6;:20;;;;15182:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15292:1;15271:23;;:9;:23;;;;15263:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15367:29;15389:6;15367:9;:17;15377:6;15367:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;15347:9;:17;15357:6;15347:17;;;;;;;;;;;;;;;:49;;;;15430:32;15455:6;15430:9;:20;15440:9;15430:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;15407:9;:20;15417:9;15407:20;;;;;;;;;;;;;;;:55;;;;15495:9;15478:35;;15487:6;15478:35;;;15506:6;15478:35;;;;;;;;;;;;;;;;;;15092:429;;;:::o;2304:184::-;2362:7;2395:1;2390;:6;;2382:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2442:9;2458:1;2454;:5;2442:17;;2479:1;2472:8;;;2304:184;;;;:::o;5673:183::-;5753:18;5757:4;5763:7;5753:3;:18::i;:::-;5745:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5843:5;5820:4;:11;;:20;5832:7;5820:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;5673:183;;:::o;5415:178::-;5493:18;5497:4;5503:7;5493:3;:18::i;:::-;5492:19;5484:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5581:4;5558;:11;;:20;5570:7;5558:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;5415:178;;:::o
Swarm Source
bzzr://cc55ff801412cd553a0b6c906a86936f4bdcad3094630bff80344accda9dd701
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.